BACKENDS: Another attempt to fix opengl flags

This commit is contained in:
Paweł Kołodziejski 2020-10-14 07:45:56 +02:00
parent e3cd0da0df
commit 9abb3f5111
5 changed files with 11 additions and 7 deletions

View file

@ -26,6 +26,8 @@
#include "graphics/opengl/system_headers.h"
#include "graphics/opengl/texture.h"
#if defined(USE_OPENGL_GAME) || defined(USE_OPENGL_SHADERS) || defined(USE_GLES2)
namespace OpenGL {
class FrameBuffer : public TextureGL {
@ -73,4 +75,6 @@ private:
} // End of namespace OpenGL
#endif // defined(USE_OPENGL_GAME) || defined(USE_OPENGL_SHADERS) || defined(USE_GLES2)
#endif