diff options
Diffstat (limited to '')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 030550c53..8a514cb8a 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp | |||
| @@ -1670,7 +1670,7 @@ private: | |||
| 1670 | 1670 | ||
| 1671 | const auto type = meta->sampler.IsShadow() ? Type::Float : Type::Int; | 1671 | const auto type = meta->sampler.IsShadow() ? Type::Float : Type::Int; |
| 1672 | return {GenerateTexture(operation, "Gather", | 1672 | return {GenerateTexture(operation, "Gather", |
| 1673 | {TextureArgument{type, meta->component}, TextureAoffi{}}) + | 1673 | {TextureAoffi{}, TextureArgument{type, meta->component}}) + |
| 1674 | GetSwizzle(meta->element), | 1674 | GetSwizzle(meta->element), |
| 1675 | Type::Float}; | 1675 | Type::Float}; |
| 1676 | } | 1676 | } |