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>2021-01-07 17:00:45 +0300
committerHans-Kristian Arntzen <post@arntzen-software.no>2021-01-08 12:19:18 +0300
commit893a011299148ac206214c49264cb21d7dc59160 (patch)
tree0e2ec19a18ab95c9c5b012dd47039aa570a9216e /spirv_msl.hpp
parent3136e342157d0b29efba7402e33e23d7373b893c (diff)
MSL: Fix various bugs with framebuffer fetch on macOS and argument buffers.fix-1582
Introduce a helper to make it clearer if a resource can be considered for argument buffers or not.
Diffstat (limited to 'spirv_msl.hpp')
-rw-r--r--spirv_msl.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/spirv_msl.hpp b/spirv_msl.hpp
index 07e322c5..8c786123 100644
--- a/spirv_msl.hpp
+++ b/spirv_msl.hpp
@@ -1026,6 +1026,7 @@ protected:
void activate_argument_buffer_resources();
bool type_is_msl_framebuffer_fetch(const SPIRType &type) const;
+ bool is_supported_argument_buffer_type(const SPIRType &type) const;
// OpcodeHandler that handles several MSL preprocessing operations.
struct OpCodePreprocessor : OpcodeHandler