X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fbackends%2Fopengl%2Fmodule_backend.h;fp=source%2Fbackends%2Fopengl%2Fmodule_backend.h;h=9c91ae1e8228ec68b53243c44b5b247a95f0d668;hb=5cbd8664a7300d0c0076862572adeda9955b1c97;hp=0000000000000000000000000000000000000000;hpb=0e61ac01ae99391c6b1301a9bf8de62fe651dac3;p=libs%2Fgl.git diff --git a/source/backends/opengl/module_backend.h b/source/backends/opengl/module_backend.h new file mode 100644 index 00000000..9c91ae1e --- /dev/null +++ b/source/backends/opengl/module_backend.h @@ -0,0 +1,22 @@ +#ifndef MSP_GL_MODULE_BACKEND_H_ +#define MSP_GL_MODULE_BACKEND_H_ + +#include + +namespace Msp { +namespace GL { + +class OpenGLSpirVModule: public NonCopyable +{ +protected: + OpenGLSpirVModule() = default; + OpenGLSpirVModule(OpenGLSpirVModule &&) { }; + ~OpenGLSpirVModule() = default; +}; + +using SpirVModuleBackend = OpenGLSpirVModule; + +} // namespace GL +} // namespace Msp + +#endif