X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fresources.h;h=238d6c544c373c4fdde4848784600a6246e8a1b1;hp=0390d85936902d4b7e75b4c2d569ec8548e61353;hb=HEAD;hpb=e37851b98dde5082ee92570354746f2f92e21940 diff --git a/source/resources.h b/source/resources.h deleted file mode 100644 index 0390d859..00000000 --- a/source/resources.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef MSP_GL_RESOURCES_H_ -#define MSP_GL_RESOURCES_H_ - -#include -#include "texture.h" - -namespace Msp { -namespace GL { - -class Texture2D; - -class Resources: virtual public DataFile::Collection -{ -private: - TextureFilter default_tex_filter; - bool srgb_conversion; - -public: - Resources(); - - void set_default_texture_filter(TextureFilter); - - /** Enables or disables sRGB conversion. If enabled, textures and material - colors are converted from sRGB to linear color space when loaded. */ - void set_srgb_conversion(bool); - - bool get_srgb_conversion() const { return srgb_conversion; } - -protected: - Texture2D *create_texture2d(const std::string &); -}; - -} // namespace GL -} // namespace Msp - -#endif