]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Texture.hh
preliminary physics, sound, hud
[chaz/yoink] / src / Moof / Texture.hh
index d2b2359f0eb4e28d09194cac40816e66dd0536a0..cdb6059ceff00d039a41a8b68f6bae45a543f84c 100644 (file)
@@ -53,6 +53,8 @@ public:
        void bind() const;
        GLuint getObject() const;
 
+       static void resetBind();
+
        unsigned getWidth() const;
        unsigned getHeight() const;
 
@@ -61,7 +63,7 @@ public:
        void setWrapS(GLuint wrap);
        void setWrapT(GLuint wrap);
 
-       static std::string getPathToResource(const std::string& name);
+       static std::string getPath(const std::string& name);
 
        struct Exception : std::runtime_error
        {
@@ -70,8 +72,8 @@ public:
        };
 
 private:
-       class TextureImpl;
-       boost::shared_ptr<TextureImpl> impl_;
+       class Impl;
+       boost::shared_ptr<Impl> impl_;
 };
 
 
This page took 0.019612 seconds and 4 git commands to generate.