X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fresources.cpp;h=c30426633e60746756428951c8e907e82829c690;hb=3a9ee749fbde41695d1b1a0804bbf63d76427b27;hp=61d05c9b3d831867e8b36af2f1f8cb70bb916c58;hpb=1acb01fb3c23439444a22fb9a9167ff6dd67611c;p=libs%2Fgl.git diff --git a/source/resources.cpp b/source/resources.cpp index 61d05c9b..c3042663 100644 --- a/source/resources.cpp +++ b/source/resources.cpp @@ -12,6 +12,7 @@ #include "resourcemanager.h" #include "resources.h" #include "technique.h" +#include "texture1d.h" #include "texture2d.h" #include "texturecube.h" @@ -35,7 +36,9 @@ 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"); }