]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/program.h
Give Program::Bindings a more generic name
[libs/gl.git] / source / core / program.h
index 666cfd3eeda8f6a00449b9ab4d899ff64aa0af78..6ed2f5716e7e50e0e20371204bb1eb32035a2aa5 100644 (file)
@@ -101,7 +101,7 @@ public:
        };
 
 private:
-       struct Bindings
+       struct TransientData
        {
                std::map<std::string, unsigned> textures;
                std::map<std::string, unsigned> blocks;
@@ -110,7 +110,7 @@ private:
        unsigned id;
        std::vector<unsigned> stage_ids;
        const Module *module;
-       Bindings *bindings;
+       TransientData *transient;
        bool linked;
        std::vector<UniformBlockInfo> uniform_blocks;
        std::vector<UniformInfo> uniforms;