]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/module_backend.h
Add support for padding in vertex formats
[libs/gl.git] / source / backends / opengl / module_backend.h
1 #ifndef MSP_GL_MODULE_BACKEND_H_
2 #define MSP_GL_MODULE_BACKEND_H_
3
4 #include <msp/core/noncopyable.h>
5
6 namespace Msp {
7 namespace GL {
8
9 class OpenGLSpirVModule: public NonCopyable
10 {
11 protected:
12         OpenGLSpirVModule() = default;
13         OpenGLSpirVModule(OpenGLSpirVModule &&) { };
14         ~OpenGLSpirVModule() = default;
15 };
16
17 using SpirVModuleBackend = OpenGLSpirVModule;
18
19 } // namespace GL
20 } // namespace Msp
21
22 #endif