X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fresources.h;h=238d6c544c373c4fdde4848784600a6246e8a1b1;hp=0390d85936902d4b7e75b4c2d569ec8548e61353;hb=94ee5852b42b05559069596e205dc2f000e6153f;hpb=e37851b98dde5082ee92570354746f2f92e21940 diff --git a/source/resources.h b/source/resources.h index 0390d859..238d6c54 100644 --- a/source/resources.h +++ b/source/resources.h @@ -7,18 +7,30 @@ namespace Msp { namespace GL { +class Mesh; +class Program; +class ResourceManager; class Texture2D; +/** +A collection class for GL resources. Most useful as a base class for an +application-specific collection. +*/ class Resources: virtual public DataFile::Collection { private: TextureFilter default_tex_filter; + float default_tex_anisotropy; bool srgb_conversion; + ResourceManager *resource_manager; public: Resources(); + static const DataFile::CollectionSource &get_builtins(); + void set_default_texture_filter(TextureFilter); + void set_default_texture_anisotropy(float); /** Enables or disables sRGB conversion. If enabled, textures and material colors are converted from sRGB to linear color space when loaded. */ @@ -26,8 +38,12 @@ public: bool get_srgb_conversion() const { return srgb_conversion; } + 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