]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/module_backend.h
Initial implementation of Vulkan backend
[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         void create() { }
17 };
18
19 using SpirVModuleBackend = OpenGLSpirVModule;
20
21 } // namespace GL
22 } // namespace Msp
23
24 #endif