summaryrefslogtreecommitdiffstats
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.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_context.h b/src/shader_recompiler/backend/glsl/emit_context.h
index ffc97007d..8d093a853 100644
--- a/src/shader_recompiler/backend/glsl/emit_context.h
+++ b/src/shader_recompiler/backend/glsl/emit_context.h
@@ -45,18 +45,14 @@ public:
code += '\n';
}
- std::string AllocVar() {
- return fmt::format("var_{}", var_num++);
- }
-
std::string code;
RegAlloc reg_alloc;
const Info& info;
const Profile& profile;
- u64 var_num{};
private:
void DefineConstantBuffers();
+ void DefineStorageBuffers();
};
} // namespace Shader::Backend::GLSL