diff options
| author | 2021-05-21 21:37:13 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:36 -0400 | |
| commit | ef7bd53f189a9bd11e4eebdcc142f60c2be8a504 (patch) | |
| tree | b2c1b5f285bfbaa22b060f5615b8cb3fb094d416 /src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |
| parent | glsl: Implement BF* (diff) | |
| download | yuzu-ef7bd53f189a9bd11e4eebdcc142f60c2be8a504.tar.gz yuzu-ef7bd53f189a9bd11e4eebdcc142f60c2be8a504.tar.xz yuzu-ef7bd53f189a9bd11e4eebdcc142f60c2be8a504.zip | |
glsl: Implement more Integer ops
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_glsl_instructions.h')
| -rw-r--r-- | src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h index 5370af0c5..39c0ba859 100644 --- a/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h +++ b/src/shader_recompiler/backend/glsl/emit_glsl_instructions.h | |||
| @@ -210,8 +210,8 @@ void EmitSelectU64(EmitContext& ctx, std::string_view cond, std::string_view tru | |||
| 210 | std::string_view false_value); | 210 | std::string_view false_value); |
| 211 | void EmitSelectF16(EmitContext& ctx, std::string_view cond, std::string_view true_value, | 211 | void EmitSelectF16(EmitContext& ctx, std::string_view cond, std::string_view true_value, |
| 212 | std::string_view false_value); | 212 | std::string_view false_value); |
| 213 | void EmitSelectF32(EmitContext& ctx, std::string_view cond, std::string_view true_value, | 213 | void EmitSelectF32(EmitContext& ctx, IR::Inst& inst, std::string_view cond, |
| 214 | std::string_view false_value); | 214 | std::string_view true_value, std::string_view false_value); |
| 215 | void EmitSelectF64(EmitContext& ctx, std::string_view cond, std::string_view true_value, | 215 | void EmitSelectF64(EmitContext& ctx, std::string_view cond, std::string_view true_value, |
| 216 | std::string_view false_value); | 216 | std::string_view false_value); |
| 217 | void EmitBitCastU16F16(EmitContext& ctx); | 217 | void EmitBitCastU16F16(EmitContext& ctx); |