summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert')
-rw-r--r--src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert b/src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert
new file mode 100644
index 00000000..1980b3c9
--- /dev/null
+++ b/src/libs/dxvk-native-1.9.2a/src/d3d11/shaders/d3d11_video_blit_vert.vert
@@ -0,0 +1,12 @@
+#version 450
+
+layout(location = 0) out vec2 o_texcoord;
+
+void main() {
+ vec2 coord = vec2(
+ float(gl_VertexIndex & 1) * 2.0f,
+ float(gl_VertexIndex & 2));
+
+ o_texcoord = coord;
+ gl_Position = vec4(-1.0f + 2.0f * coord, 0.0f, 1.0f);
+}