summaryrefslogtreecommitdiff
path: root/src/video_core/host_shaders
diff options
context:
space:
mode:
authorGravatar Feng Chen2023-01-11 11:10:48 +0800
committerGravatar Feng Chen2023-01-16 10:27:57 +0800
commit9fc7ca1731862354ef70bfaf34d2c807a904a27b (patch)
tree5bdfbefc345364d74798de659225246319e56b1b /src/video_core/host_shaders
parentvideo_core: Implement opengl/vulkan draw_texture (diff)
downloadyuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.gz
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.tar.xz
yuzu-9fc7ca1731862354ef70bfaf34d2c807a904a27b.zip
Address feedback
Diffstat (limited to 'src/video_core/host_shaders')
-rw-r--r--src/video_core/host_shaders/full_screen_triangle.vert2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host_shaders/full_screen_triangle.vert b/src/video_core/host_shaders/full_screen_triangle.vert
index 8ac936efd..d16d98995 100644
--- a/src/video_core/host_shaders/full_screen_triangle.vert
+++ b/src/video_core/host_shaders/full_screen_triangle.vert
@@ -32,4 +32,4 @@ void main() {
32 float y = float((VERTEX_ID & 2) << 1); 32 float y = float((VERTEX_ID & 2) << 1);
33 gl_Position = vec4(x - 1.0, FLIPY * (y - 1.0), 0.0, 1.0); 33 gl_Position = vec4(x - 1.0, FLIPY * (y - 1.0), 0.0, 1.0);
34 texcoord = fma(vec2(x, y) / 2.0, tex_scale, tex_offset); 34 texcoord = fma(vec2(x, y) / 2.0, tex_scale, tex_offset);
35} \ No newline at end of file 35}