diff options
| author | 2021-05-24 18:35:37 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:36 -0400 | |
| commit | 3d9ecbe99844c44074c26f2db4db376059f50534 (patch) | |
| tree | 143a67c8da0e7df7568f79196339f5423931c757 /src/shader_recompiler/backend/glsl/reg_alloc.h | |
| parent | glsl: Implement FCMP (diff) | |
| download | yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.gz yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.tar.xz yuzu-3d9ecbe99844c44074c26f2db4db376059f50534.zip | |
glsl: Wip storage atomic ops
Diffstat (limited to 'src/shader_recompiler/backend/glsl/reg_alloc.h')
| -rw-r--r-- | src/shader_recompiler/backend/glsl/reg_alloc.h | 3 |
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 | ||
| 49 | class RegAlloc { | 49 | class RegAlloc { |
| 50 | public: | 50 | public: |
| 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 | ||