]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderpass.h
Remove support for inline textures in RenderPass
[libs/gl.git] / source / renderpass.h
index 428c74ce7b1f280046e4268b66ec7005d2cf7a4c..7a2f65688104015afe9650b4b5b6e5814a84a95f 100644 (file)
@@ -17,8 +17,6 @@ class Texturing;
 /**
 Encapsulates the data that determines the appearance of a rendered surface.
 This includes shader and data for it, material and texturing.
-
-XXX Does not delete inline texture from datafiles properly
 */
 class RenderPass
 {
@@ -48,15 +46,11 @@ private:
        {
        private:
                unsigned index;
-               RefPtr<Texture> tex;
 
        public:
                TextureLoader(Texturing &, unsigned, Collection *);
        private:
-               virtual void finish();
-
                void texture(const std::string &);
-               void texture2d();
        };
 
        RefPtr<const Program> shprog;