X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresources.h;h=838b022989b69eb9ea73c31c5cb57a6da4ab62bd;hb=859015dce969a0d9ba2bc603d6dbb2685159e393;hp=e939f7cef8b9b9238fb3c2c28350c9e391832d04;hpb=f1c404eda3ae4173ceb63a4f9d1f0bbccf7091a6;p=libs%2Fgl.git diff --git a/source/resources.h b/source/resources.h index e939f7ce..838b0229 100644 --- a/source/resources.h +++ b/source/resources.h @@ -1,6 +1,7 @@ #ifndef MSP_GL_RESOURCES_H_ #define MSP_GL_RESOURCES_H_ +#include #include #include "texture.h" @@ -8,6 +9,7 @@ namespace Msp { namespace GL { class Mesh; +class Program; class ResourceManager; class Texture2D; @@ -25,6 +27,10 @@ private: public: Resources(); +private: + static DataFile::BuiltinSource &get_builtins(); + +public: void set_default_texture_filter(TextureFilter); /** Enables or disables sRGB conversion. If enabled, textures and material @@ -38,6 +44,7 @@ public: protected: Mesh *create_mesh(const std::string &); Texture2D *create_texture2d(const std::string &); + Program *create_program(const std::string &); }; } // namespace GL