]> git.tdb.fi Git - libs/gl.git/blobdiff - source/resources/resources.cpp
Remove the deprecated srgb_conversion flag from Resources
[libs/gl.git] / source / resources / resources.cpp
index 7cbdd2c5069f3bc8f51311bfa52e3183f7457787..e67405ac705489a56dbc435cd0c1224b1478e667 100644 (file)
@@ -43,7 +43,6 @@ void init_builtin_data(DataFile::BuiltinSource &);
 Resources *Resources::global_resources = 0;
 
 Resources::Resources(bool set_as_global):
-       srgb_conversion(false),
        resource_manager(0)
 {
        add_type<Animation>().suffix(".anim").keyword("animation");
@@ -140,11 +139,6 @@ const DataFile::CollectionSource &Resources::get_builtins()
        return builtins;
 }
 
-void Resources::set_srgb_conversion(bool c)
-{
-       srgb_conversion = c;
-}
-
 void Resources::set_resource_manager(ResourceManager *m)
 {
        resource_manager = m;