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