summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glsl/reg_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader_recompiler/backend/glsl/reg_alloc.h')
-rw-r--r--src/shader_recompiler/backend/glsl/reg_alloc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glsl/reg_alloc.h b/src/shader_recompiler/backend/glsl/reg_alloc.h
index 63c940d3a..7891c30e0 100644
--- a/src/shader_recompiler/backend/glsl/reg_alloc.h
+++ b/src/shader_recompiler/backend/glsl/reg_alloc.h
@@ -48,7 +48,8 @@ static_assert(sizeof(Id) == sizeof(u32));
48 48
49class RegAlloc { 49class RegAlloc {
50public: 50public:
51 std::string Define(IR::Inst& inst, Type type = Type::Void); 51 std::string Define(IR::Inst& inst);
52 std::string Define(IR::Inst& inst, Type type);
52 53
53 std::string Consume(const IR::Value& value); 54 std::string Consume(const IR::Value& value);
54 55