Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <post@arntzen-software.no>2020-06-08 12:12:00 +0300
committerGitHub <noreply@github.com>2020-06-08 12:12:00 +0300
commit553a7f959b6b90f89054a1df50b50dfcdc3389be (patch)
tree247b8c0a839b3c22c7da4b944e23d384129b9d21 /spirv_hlsl.hpp
parentb73c047fafb16761da98648f403abba19364c74d (diff)
parentcbe0cca73bff25b53f50d12bccad95f1b4263705 (diff)
Merge pull request #1385 from KhronosGroup/fix-1237
GLSL: Implement sparse feedback.
Diffstat (limited to 'spirv_hlsl.hpp')
-rw-r--r--spirv_hlsl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/spirv_hlsl.hpp b/spirv_hlsl.hpp
index 946486dc..ab534c82 100644
--- a/spirv_hlsl.hpp
+++ b/spirv_hlsl.hpp
@@ -209,7 +209,7 @@ private:
void emit_interface_block_in_struct(const SPIRVariable &type, std::unordered_set<uint32_t> &active_locations);
void emit_builtin_inputs_in_struct();
void emit_builtin_outputs_in_struct();
- void emit_texture_op(const Instruction &i) override;
+ void emit_texture_op(const Instruction &i, bool sparse) override;
void emit_instruction(const Instruction &instruction) override;
void emit_glsl_op(uint32_t result_type, uint32_t result_id, uint32_t op, const uint32_t *args,
uint32_t count) override;