summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2023-05-10 19:14:58 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2023-05-10 20:14:07 +0200
commitad2d1ce3936c05a01ffa6e7990a8cdab4935a033 (patch)
tree203ebbd5f58139c1d7bb5ab352b9e1c30aaccfea
parentebcebe548dcaed9d5250f6c29492d8e09c74e04c (diff)
downloadgstreamer-ad2d1ce3936c05a01ffa6e7990a8cdab4935a033.tar.gz
vkshaderspv: fix example
Use the correct element names. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4594>
-rw-r--r--subprojects/gst-plugins-bad/ext/vulkan/vkshaderspv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/gst-plugins-bad/ext/vulkan/vkshaderspv.c b/subprojects/gst-plugins-bad/ext/vulkan/vkshaderspv.c
index d597add833..bcfe4d684e 100644
--- a/subprojects/gst-plugins-bad/ext/vulkan/vkshaderspv.c
+++ b/subprojects/gst-plugins-bad/ext/vulkan/vkshaderspv.c
@@ -26,7 +26,7 @@
*
* ## Examples
* ```
- * gst-launch-1.0 videotestsrc ! vulkanupload ! vulkanshader fragment-location="myshader.f.spv" ! vulkanimagesink
+ * gst-launch-1.0 videotestsrc ! vulkanupload ! vulkanshaderspv fragment-location="myshader.f.spv" ! vulkansink
* ```
* The following is a simple Vulkan passthrough shader with the required inputs.
* Compile it with `glslc --target-env=vulkan1.0 myshader.frag -o myshader.f.spv`.