mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-05 09:50:41 +01:00
9954667c45
The exact commands to make this commit were: git reset --hard origin/master find -type f | # list all regular files grep -E '\.(h|cpp|fsh|vsh|mm)|LICENSE$' | # filter for text files xargs -n 1 -P $(nproc) sed -i 's:\s*$::' # for each file, trim trailing whitespace including the CR git commit -a
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
#ifndef __E_DRIVER_TYPES_H_INCLUDED__
|
|
#define __E_DRIVER_TYPES_H_INCLUDED__
|
|
|
|
#include "irrTypes.h"
|
|
|
|
namespace irr
|
|
{
|
|
namespace video
|
|
{
|
|
|
|
//! An enum for all types of drivers the Irrlicht Engine supports.
|
|
enum E_DRIVER_TYPE
|
|
{
|
|
//! Null driver, useful for applications to run the engine without visualization.
|
|
/** The null device is able to load textures, but does not
|
|
render and display any graphics. */
|
|
EDT_NULL,
|
|
|
|
//! OpenGL device, available on most platforms.
|
|
/** Performs hardware accelerated rendering of 3D and 2D
|
|
primitives. */
|
|
EDT_OPENGL,
|
|
|
|
//! OpenGL-ES 1.x driver, for embedded and mobile systems
|
|
EDT_OGLES1,
|
|
|
|
//! OpenGL-ES 2.x driver, for embedded and mobile systems
|
|
/** Supports shaders etc. */
|
|
EDT_OGLES2,
|
|
|
|
//! WebGL1 friendly subset of OpenGL-ES 2.x driver for Emscripten
|
|
EDT_WEBGL1,
|
|
|
|
EDT_OPENGL3,
|
|
|
|
//! No driver, just for counting the elements
|
|
EDT_COUNT
|
|
};
|
|
|
|
} // end namespace video
|
|
} // end namespace irr
|
|
|
|
|
|
#endif
|