X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fresources.h;h=c0529b581c464602d6b5726c3e53d245d5cb2e35;hp=e2503298c5ce59fe0ba04570700970abeb9d881a;hb=cfd4d36c2b6b6095ada3aef8082e5d409a233a21;hpb=7db48f2836ec42c6e2dbeff336634a03bc6d7a62 diff --git a/source/resources.h b/source/resources.h index e2503298..c0529b58 100644 --- a/source/resources.h +++ b/source/resources.h @@ -7,6 +7,8 @@ namespace Msp { namespace GL { +class Mesh; +class Program; class ResourceManager; class Texture2D; @@ -24,6 +26,8 @@ private: public: Resources(); + static const DataFile::CollectionSource &get_builtins(); + void set_default_texture_filter(TextureFilter); /** Enables or disables sRGB conversion. If enabled, textures and material @@ -35,7 +39,9 @@ public: void set_resource_manager(ResourceManager *); protected: + Mesh *create_mesh(const std::string &); Texture2D *create_texture2d(const std::string &); + Program *create_program(const std::string &); }; } // namespace GL