X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresources.cpp;h=68b8fd5bdded8aa12489d7bda38c42a301e4c0f0;hb=1955e583d7eeeb0a2ff054d90c3694f575d9a08d;hp=2fd6950370df6580fe08cdf54139bef9b6d50316;hpb=f1c404eda3ae4173ceb63a4f9d1f0bbccf7091a6;p=libs%2Fgl.git diff --git a/source/resources.cpp b/source/resources.cpp index 2fd69503..68b8fd5b 100644 --- a/source/resources.cpp +++ b/source/resources.cpp @@ -1,4 +1,5 @@ #include +#include #include "animation.h" #include "armature.h" #include "font.h" @@ -11,7 +12,9 @@ #include "resourcemanager.h" #include "resources.h" #include "technique.h" +#include "texture1d.h" #include "texture2d.h" +#include "texture2darray.h" #include "texturecube.h" using namespace std; @@ -20,7 +23,7 @@ namespace Msp { namespace GL { Resources::Resources(): - default_tex_filter(LINEAR_MIPMAP_LINEAR), + default_tex_filter(SGIS_generate_mipmap ? LINEAR_MIPMAP_LINEAR : LINEAR), srgb_conversion(false), resource_manager(0) { @@ -34,8 +37,11 @@ Resources::Resources(): add_type().keyword("pose"); add_type().keyword("shader"); add_type().suffix(".tech").keyword("technique"); + add_type().base().suffix(".tex1d").keyword("texture1d"); add_type().base().suffix(".tex2d").suffix(".png").suffix(".jpg").keyword("texture2d").creator(&Resources::create_texture2d); + add_type().base().suffix(".tex3d").keyword("texture3d"); add_type().base().suffix(".texcb").keyword("texture_cube"); + add_type().base().suffix(".tex2da").keyword("texture2d_array"); } void Resources::set_default_texture_filter(TextureFilter tf) @@ -82,8 +88,7 @@ Texture2D *Resources::create_texture2d(const string &name) RefPtr tex = new GL::Texture2D(resource_manager); - if(default_tex_filter==NEAREST_MIPMAP_NEAREST || default_tex_filter==NEAREST_MIPMAP_LINEAR || - default_tex_filter==LINEAR_MIPMAP_NEAREST || default_tex_filter==LINEAR_MIPMAP_LINEAR) + if(is_mipmapped(default_tex_filter)) { tex->set_generate_mipmap(true); tex->set_mag_filter(LINEAR); @@ -92,7 +97,6 @@ Texture2D *Resources::create_texture2d(const string &name) tex->set_mag_filter(default_tex_filter); tex->set_min_filter(default_tex_filter); - // TODO Somehow pass the srgb flag if a resource manager is in use if(resource_manager) resource_manager->set_resource_location(*tex, *this, name); else