]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/texture2darray_backend.cpp
Move backend information into Device
[libs/gl.git] / source / backends / opengl / texture2darray_backend.cpp
1 #include <msp/gl/extensions/ext_texture_array.h>
2 #include "texture2darray_backend.h"
3
4 namespace Msp {
5 namespace GL {
6
7 OpenGLTexture2DArray::OpenGLTexture2DArray():
8         Texture3D(GL_TEXTURE_2D_ARRAY)
9 {
10         static Require _req(EXT_texture_array);
11 }
12
13 } // namespace GL
14 } // namespace Msp