]> git.lizzy.rs Git - irrlicht.git/blob - source/Irrlicht/COpenGLCoreFeature.h
fe86f95524c4e3c8935fd38f47bd4caad1db1301
[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 #if defined(_IRR_COMPILE_WITH_OPENGL_) || defined(_IRR_COMPILE_WITH_OGLES1_) || defined(_IRR_COMPILE_WITH_OGLES2_)\r
10 \r
11 #include "irrTypes.h"\r
12 \r
13 namespace irr\r
14 {\r
15 namespace video\r
16 {\r
17 \r
18 class COpenGLCoreFeature\r
19 {\r
20 public:\r
21         COpenGLCoreFeature() : BlendOperation(false), ColorAttachment(0), MultipleRenderTarget(0), MaxTextureUnits(1)\r
22         {\r
23         }\r
24 \r
25         virtual ~COpenGLCoreFeature()\r
26         {\r
27         }\r
28 \r
29         bool BlendOperation;\r
30         \r
31         u8 ColorAttachment;\r
32         u8 MultipleRenderTarget;\r
33         u8 MaxTextureUnits;\r
34 };\r
35 \r
36 }\r
37 }\r
38 \r
39 #endif\r
40 #endif\r