Use openssl's sha1 and sha256, optionally (#15472)
[minetest.git] / irr / src / COpenGLCoreFeature.h
blobdc3d40e04582e68ba7ea5b7c72ac9f2849c3daa1
1 // Copyright (C) 2015 Patryk Nadrowski
2 // This file is part of the "Irrlicht Engine".
3 // For conditions of distribution and use, see copyright notice in irrlicht.h
5 #pragma once
7 #include "irrTypes.h"
9 namespace irr
11 namespace video
14 class COpenGLCoreFeature
16 public:
17 COpenGLCoreFeature() :
18 BlendOperation(false), ColorAttachment(0), MultipleRenderTarget(0), MaxTextureUnits(1)
22 virtual ~COpenGLCoreFeature()
26 bool BlendOperation;
28 u8 ColorAttachment;
29 u8 MultipleRenderTarget;
30 u8 MaxTextureUnits;