diff options
| author | 2021-03-20 19:11:56 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:23 -0400 | |
| commit | 76c8a962ac4eae77e71d66a72c448930240339f9 (patch) | |
| tree | 267bdb72f0fad43779080cd1907dd8159a6c7154 /src/shader_recompiler/backend/spirv/emit_spirv.h | |
| parent | shader: Refactor half floating instructions (diff) | |
| download | yuzu-76c8a962ac4eae77e71d66a72c448930240339f9.tar.gz yuzu-76c8a962ac4eae77e71d66a72c448930240339f9.tar.xz yuzu-76c8a962ac4eae77e71d66a72c448930240339f9.zip | |
spirv: Implement VertexId and InstanceId, refactor code
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_spirv.h')
| -rw-r--r-- | src/shader_recompiler/backend/spirv/emit_spirv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv.h b/src/shader_recompiler/backend/spirv/emit_spirv.h index 1fe65f8a9..e297a0e20 100644 --- a/src/shader_recompiler/backend/spirv/emit_spirv.h +++ b/src/shader_recompiler/backend/spirv/emit_spirv.h | |||
| @@ -81,8 +81,8 @@ void EmitLoadStorageS8(EmitContext& ctx); | |||
| 81 | void EmitLoadStorageU16(EmitContext& ctx); | 81 | void EmitLoadStorageU16(EmitContext& ctx); |
| 82 | void EmitLoadStorageS16(EmitContext& ctx); | 82 | void EmitLoadStorageS16(EmitContext& ctx); |
| 83 | Id EmitLoadStorage32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); | 83 | Id EmitLoadStorage32(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); |
| 84 | void EmitLoadStorage64(EmitContext& ctx); | 84 | Id EmitLoadStorage64(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); |
| 85 | void EmitLoadStorage128(EmitContext& ctx); | 85 | Id EmitLoadStorage128(EmitContext& ctx, const IR::Value& binding, const IR::Value& offset); |
| 86 | void EmitWriteStorageU8(EmitContext& ctx); | 86 | void EmitWriteStorageU8(EmitContext& ctx); |
| 87 | void EmitWriteStorageS8(EmitContext& ctx); | 87 | void EmitWriteStorageS8(EmitContext& ctx); |
| 88 | void EmitWriteStorageU16(EmitContext& ctx); | 88 | void EmitWriteStorageU16(EmitContext& ctx); |