]> git.lizzy.rs Git - irrlicht.git/blob - source/Irrlicht/COpenGLCoreFeature.h
Fix OpenGL3 driver to compile standalone
[irrlicht.git] / source / Irrlicht / COpenGLCoreFeature.h
1 // Copyright (C) 2015 Patryk Nadrowski\r
2 // This file is part of the "Irrlicht Engine".\r
3 // For conditions of distribution and use, see copyright notice in irrlicht.h\r
4 \r
5 #ifndef __C_OGLCORE_FEATURE_H_INCLUDED__\r
6 #define __C_OGLCORE_FEATURE_H_INCLUDED__\r
7 \r
8 \r
9 #include "irrTypes.h"\r
10 \r
11 namespace irr\r
12 {\r
13 namespace video\r
14 {\r
15 \r
16 class COpenGLCoreFeature\r
17 {\r
18 public:\r
19         COpenGLCoreFeature() : BlendOperation(false), ColorAttachment(0), MultipleRenderTarget(0), MaxTextureUnits(1)\r
20         {\r
21         }\r
22 \r
23         virtual ~COpenGLCoreFeature()\r
24         {\r
25         }\r
26 \r
27         bool BlendOperation;\r
28         \r
29         u8 ColorAttachment;\r
30         u8 MultipleRenderTarget;\r
31         u8 MaxTextureUnits;\r
32 };\r
33 \r
34 }\r
35 }\r
36 \r
37 #endif\r