]> git.tdb.fi Git - libs/gl.git/blob - source/backends/opengl/module_backend.h
Check the flat qualifier from the correct member
[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         void set_debug_name(const std::string &) { }
19 };
20
21 using SpirVModuleBackend = OpenGLSpirVModule;
22
23 } // namespace GL
24 } // namespace Msp
25
26 #endif