diff options
| author | 2024-01-15 00:09:34 -0500 | |
|---|---|---|
| committer | 2024-01-31 11:27:20 -0500 | |
| commit | 60ee29aac386c31b9a9add6a12f051273fa45dae (patch) | |
| tree | 1640a3e44c8339ec4dd4241ca63256c12d7767ae /src/video_core/host_shaders | |
| parent | renderer_opengl: split out SMAA (diff) | |
| download | yuzu-60ee29aac386c31b9a9add6a12f051273fa45dae.tar.gz yuzu-60ee29aac386c31b9a9add6a12f051273fa45dae.tar.xz yuzu-60ee29aac386c31b9a9add6a12f051273fa45dae.zip | |
renderer_opengl: split out FXAA
Diffstat (limited to 'src/video_core/host_shaders')
| -rw-r--r-- | src/video_core/host_shaders/fxaa.vert | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/host_shaders/fxaa.vert b/src/video_core/host_shaders/fxaa.vert index c2717d90d..223ab785e 100644 --- a/src/video_core/host_shaders/fxaa.vert +++ b/src/video_core/host_shaders/fxaa.vert | |||
| @@ -7,8 +7,8 @@ out gl_PerVertex { | |||
| 7 | vec4 gl_Position; | 7 | vec4 gl_Position; |
| 8 | }; | 8 | }; |
| 9 | 9 | ||
| 10 | const vec2 vertices[4] = | 10 | const vec2 vertices[3] = |
| 11 | vec2[4](vec2(-1.0, 1.0), vec2(1.0, 1.0), vec2(-1.0, -1.0), vec2(1.0, -1.0)); | 11 | vec2[3](vec2(-1,-1), vec2(3,-1), vec2(-1, 3)); |
| 12 | 12 | ||
| 13 | layout (location = 0) out vec4 posPos; | 13 | layout (location = 0) out vec4 posPos; |
| 14 | 14 | ||