]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/object.h
Add support for integer vertex attributes
[libs/gl.git] / source / render / object.h
index c97e951c16d04d7186d8c6bdeca2902041e05669..b7b549536f4b92bd97c0ee9506e8ab3c48d42111 100644 (file)
@@ -2,7 +2,6 @@
 #define MSP_GL_OBJECT_H_
 
 #include <vector>
-#include "bindable.h"
 #include "renderable.h"
 #include "renderpass.h"
 #include "resourceobserver.h"
@@ -66,8 +65,8 @@ public:
 private:
        struct LevelOfDetail
        {
-               RefPtr<const Mesh> mesh;
-               RefPtr<const Technique> technique;
+               const Mesh *mesh;
+               const Technique *technique;
        };
 
        std::vector<LevelOfDetail> lods;