diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-05-28 04:28:33 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:36 +0200 |
commit | 2a713337165df4d5c4228458999a680e9ab65369 (patch) | |
tree | 0e820cbfcedaaffafc34b334bd04107a51e2a24d /src/shader_recompiler/backend/glsl/emit_context.h | |
parent | glsl: remove unused headers (diff) | |
download | yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar.gz yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar.bz2 yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar.lz yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar.xz yuzu-2a713337165df4d5c4228458999a680e9ab65369.tar.zst yuzu-2a713337165df4d5c4228458999a680e9ab65369.zip |
Diffstat (limited to 'src/shader_recompiler/backend/glsl/emit_context.h')
-rw-r--r-- | src/shader_recompiler/backend/glsl/emit_context.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shader_recompiler/backend/glsl/emit_context.h b/src/shader_recompiler/backend/glsl/emit_context.h index 07dad6e57..9dff921db 100644 --- a/src/shader_recompiler/backend/glsl/emit_context.h +++ b/src/shader_recompiler/backend/glsl/emit_context.h @@ -127,7 +127,6 @@ public: Stage stage{}; std::string_view stage_name = "invalid"; - std::string_view attrib_name = "invalid"; std::vector<u32> texture_buffer_bindings; std::vector<u32> image_buffer_bindings; @@ -138,8 +137,8 @@ public: private: void SetupExtensions(std::string& header); - void DefineConstantBuffers(); - void DefineStorageBuffers(); + void DefineConstantBuffers(Bindings& bindings); + void DefineStorageBuffers(Bindings& bindings); void DefineHelperFunctions(); void SetupImages(Bindings& bindings); }; |