]> git.tdb.fi Git - libs/gl.git/blobdiff - source/resources/resources.h
Remove default sampler from Texture
[libs/gl.git] / source / resources / resources.h
index a50fdc0e022081602abcaea69c44b4e7d3b2ee9d..37de5d8cfc80482badc99343ff617dd21d0ff692 100644 (file)
@@ -32,19 +32,18 @@ public:
        };
 
 private:
-       TextureFilter default_tex_filter;
-       float default_tex_anisotropy;
        bool srgb_conversion;
        ResourceManager *resource_manager;
 
+       static Resources *global_resources;
+
 public:
-       Resources();
+       Resources(bool = true);
+       virtual ~Resources();
 
+       static Resources &get_global();
        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. */
        DEPRECATED void set_srgb_conversion(bool);