]> git.tdb.fi Git - libs/gl.git/blob - source/core/commands.h
869c41b615ea9f66a206156c37e7c586a7157971
[libs/gl.git] / source / core / commands.h
1 #ifndef MSP_GL_COMMANDS_H_
2 #define MSP_GL_COMMANDS_H_
3
4 #include "commands_backend.h"
5
6 namespace Msp {
7 namespace GL {
8
9 class Commands: public CommandsBackend
10 {
11 public:
12         using CommandsBackend::use_pipeline;
13
14         using CommandsBackend::clear;
15         using CommandsBackend::draw;
16         using CommandsBackend::draw_instanced;
17         using CommandsBackend::resolve_multisample;
18
19         using CommandsBackend::begin_query;
20         using CommandsBackend::end_query;
21 };
22
23 } // namespace GL
24 } // namespace Msp
25
26 #endif