X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbackends%2Fopengl%2Ftexture2darray_backend.cpp;fp=source%2Fbackends%2Fopengl%2Ftexture2darray_backend.cpp;h=610229ba4acf96f16cb7d4cf92761ab21c5c128f;hb=160e9eea29bd10034733d59507fa1bcca36be401;hp=0000000000000000000000000000000000000000;hpb=93448d16e72e38afbaecbccf6fdedd46d6a82a73;p=libs%2Fgl.git diff --git a/source/backends/opengl/texture2darray_backend.cpp b/source/backends/opengl/texture2darray_backend.cpp new file mode 100644 index 00000000..610229ba --- /dev/null +++ b/source/backends/opengl/texture2darray_backend.cpp @@ -0,0 +1,14 @@ +#include +#include "texture2darray_backend.h" + +namespace Msp { +namespace GL { + +OpenGLTexture2DArray::OpenGLTexture2DArray(): + Texture3D(GL_TEXTURE_2D_ARRAY) +{ + static Require _req(EXT_texture_array); +} + +} // namespace GL +} // namespace Msp