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:
Diffstat (limited to 'spirv_cross.hpp')
-rw-r--r--spirv_cross.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/spirv_cross.hpp b/spirv_cross.hpp
index 783af1e2..f1c347dd 100644
--- a/spirv_cross.hpp
+++ b/spirv_cross.hpp
@@ -931,6 +931,7 @@ protected:
// Similar is implemented for images, as well as if subpass inputs are needed.
std::unordered_set<uint32_t> comparison_ids;
bool need_subpass_input = false;
+ bool need_subpass_input_ms = false;
// In certain backends, we will need to use a dummy sampler to be able to emit code.
// GLSL does not support texelFetch on texture2D objects, but SPIR-V does,
@@ -970,6 +971,7 @@ protected:
void add_hierarchy_to_comparison_ids(uint32_t ids);
bool need_subpass_input = false;
+ bool need_subpass_input_ms = false;
void add_dependency(uint32_t dst, uint32_t src);
};