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-04 13:43:04 +0300
committerHans-Kristian Arntzen <post@arntzen-software.no>2020-06-04 13:43:04 +0300
commit66007938841471629a408d28c04c4e144c6e8f80 (patch)
tree3ac2b8784511713c7ffb6d719d852336b5ac4ad7 /spirv_cross_c.h
parentd385bf096f5dabbc4cdaeb6872b0f64be1a63ad0 (diff)
MSL: Remove obsolete MSLVertexAttr members.
These are completely unused. Need to keep the members around for ABI compatbility however ...
Diffstat (limited to 'spirv_cross_c.h')
-rw-r--r--spirv_cross_c.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/spirv_cross_c.h b/spirv_cross_c.h
index 0c218396..ddc58f0b 100644
--- a/spirv_cross_c.h
+++ b/spirv_cross_c.h
@@ -270,10 +270,16 @@ typedef enum spvc_msl_vertex_format
typedef struct spvc_msl_vertex_attribute
{
unsigned location;
+
+ /* Obsolete, do not use. Only lingers on for ABI compatibility. */
unsigned msl_buffer;
+ /* Obsolete, do not use. Only lingers on for ABI compatibility. */
unsigned msl_offset;
+ /* Obsolete, do not use. Only lingers on for ABI compatibility. */
unsigned msl_stride;
+ /* Obsolete, do not use. Only lingers on for ABI compatibility. */
spvc_bool per_instance;
+
spvc_msl_vertex_format format;
SpvBuiltIn builtin;
} spvc_msl_vertex_attribute;