]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/reflectdata.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / core / reflectdata.h
index a89e7fcf2972c973c89a803501ebbd6739f7f11c..981f45f000f7b02d926af39d64dd19efaf990508 100644 (file)
@@ -17,7 +17,9 @@ struct ReflectData
        enum
        {
                DEFAULT_BLOCK = -1,
-               PUSH_CONSTANT = -2
+               PUSH_CONSTANT = -2,
+               UNIFORM_BLOCK_BINDING = 0,
+               TEXTURE_BINDING = 0x1000000
        };
 
        typedef unsigned LayoutHash;
@@ -66,8 +68,12 @@ struct ReflectData
        std::vector<AttributeInfo> attributes;
        unsigned n_clip_distances = 0;
        unsigned n_descriptor_sets = 0;
+       unsigned push_constants_size = 0;
+       std::vector<int> used_bindings;
+       LinAl::Vector<unsigned, 3> compute_wg_size;
 
        void update_layout_hash();
+       void update_used_bindings();
 };
 
 } // namespace GL