aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag')
-rw-r--r--3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag14
1 files changed, 14 insertions, 0 deletions
diff --git a/3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag b/3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag
new file mode 100644
index 00000000..313a8880
--- /dev/null
+++ b/3rdparty/imgui/examples/example_glfw_vulkan/glsl_shader.frag
@@ -0,0 +1,14 @@
+#version 450 core
+layout(location = 0) out vec4 fColor;
+
+layout(set=0, binding=0) uniform sampler2D sTexture;
+
+layout(location = 0) in struct{
+ vec4 Color;
+ vec2 UV;
+} In;
+
+void main()
+{
+ fColor = In.Color * texture(sTexture, In.UV.st);
+}