]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/texture2darray_backend.h
Move all OpenGL-specific code to a separate directory
[libs/gl.git] / source / backends / opengl / texture2darray_backend.h
1 #ifndef MSP_GL_TEXTURE2DARRAY_BACKEND_H_
2 #define MSP_GL_TEXTURE2DARRAY_BACKEND_H_
3
4 #include "texture3d.h"
5
6 namespace Msp {
7 namespace GL {
8
9 class OpenGLTexture2DArray: public Texture3D
10 {
11 protected:
12         OpenGLTexture2DArray();
13 };
14
15 using Texture2DArrayBackend = OpenGLTexture2DArray;
16
17 } // namespace GL
18 } // namespace Msp
19
20 #endif