summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/emit_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_context.h')
-rw-r--r--src/shader_recompiler/backend/glsl/emit_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_context.h b/src/shader_recompiler/backend/glsl/emit_context.h
index daca1b6f9..9bdca184f 100644
--- a/src/shader_recompiler/backend/glsl/emit_context.h
+++ b/src/shader_recompiler/backend/glsl/emit_context.h
@@ -31,7 +31,7 @@ struct Program;
31namespace Shader::Backend::GLSL { 31namespace Shader::Backend::GLSL {
32 32
33struct GenericElementInfo { 33struct GenericElementInfo {
34 std::string name{}; 34 std::string name;
35 u32 first_element{}; 35 u32 first_element{};
36 u32 num_components{}; 36 u32 num_components{};
37}; 37};
@@ -159,7 +159,6 @@ public:
159 159
160 bool uses_y_direction{}; 160 bool uses_y_direction{};
161 bool uses_cc_carry{}; 161 bool uses_cc_carry{};
162 bool supports_viewport_layer{};
163 162
164private: 163private:
165 void SetupExtensions(std::string& header); 164 void SetupExtensions(std::string& header);
@@ -169,6 +168,7 @@ private:
169 void DefineHelperFunctions(); 168 void DefineHelperFunctions();
170 std::string DefineGlobalMemoryFunctions(); 169 std::string DefineGlobalMemoryFunctions();
171 void SetupImages(Bindings& bindings); 170 void SetupImages(Bindings& bindings);
171 void SetupTextures(Bindings& bindings);
172}; 172};
173 173
174} // namespace Shader::Backend::GLSL 174} // namespace Shader::Backend::GLSL