diff options
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_context.h')
| -rw-r--r-- | src/shader_recompiler/backend/glsl/emit_context.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_context.h b/src/shader_recompiler/backend/glsl/emit_context.h index 0d18abe90..9d8be0c9a 100644 --- a/src/shader_recompiler/backend/glsl/emit_context.h +++ b/src/shader_recompiler/backend/glsl/emit_context.h | |||
| @@ -70,21 +70,11 @@ public: | |||
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | template <typename... Args> | 72 | template <typename... Args> |
| 73 | void AddS32(const char* format_str, IR::Inst& inst, Args&&... args) { | ||
| 74 | Add<GlslVarType::S32>(format_str, inst, args...); | ||
| 75 | } | ||
| 76 | |||
| 77 | template <typename... Args> | ||
| 78 | void AddF32(const char* format_str, IR::Inst& inst, Args&&... args) { | 73 | void AddF32(const char* format_str, IR::Inst& inst, Args&&... args) { |
| 79 | Add<GlslVarType::F32>(format_str, inst, args...); | 74 | Add<GlslVarType::F32>(format_str, inst, args...); |
| 80 | } | 75 | } |
| 81 | 76 | ||
| 82 | template <typename... Args> | 77 | template <typename... Args> |
| 83 | void AddS64(const char* format_str, IR::Inst& inst, Args&&... args) { | ||
| 84 | Add<GlslVarType::S64>(format_str, inst, args...); | ||
| 85 | } | ||
| 86 | |||
| 87 | template <typename... Args> | ||
| 88 | void AddU64(const char* format_str, IR::Inst& inst, Args&&... args) { | 78 | void AddU64(const char* format_str, IR::Inst& inst, Args&&... args) { |
| 89 | Add<GlslVarType::U64>(format_str, inst, args...); | 79 | Add<GlslVarType::U64>(format_str, inst, args...); |
| 90 | } | 80 | } |