1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00
luanti/irr/src/COpenGLCoreFeature.h

32 lines
489 B
C++

// 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
#pragma once
#include "irrTypes.h"
namespace irr
{
namespace video
{
class COpenGLCoreFeature
{
public:
COpenGLCoreFeature() = default;
virtual ~COpenGLCoreFeature()
{
}
bool BlendOperation = false;
bool TexStorage = false;
u8 ColorAttachment = 0;
u8 MultipleRenderTarget = 0;
u8 MaxTextureUnits = 0;
};
}
}