forked from Mirrorlandia_minetest/irrlicht
8dd8652f5f
The classes are tiny wrappers currently but should they be customized, they are there
20 lines
553 B
C++
20 lines
553 B
C++
// Copyright (C) 2023 Vitaliy Lobachevskiy
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in Irrlicht.h
|
|
|
|
#pragma once
|
|
#include "OpenGL/Driver.h"
|
|
|
|
namespace irr {
|
|
namespace video {
|
|
|
|
class COpenGLES2Driver : public COpenGL3DriverBase {
|
|
friend IVideoDriver* createOGLES2Driver(const SIrrlichtCreationParameters& params, io::IFileSystem* io, IContextManager* contextManager);
|
|
public:
|
|
using COpenGL3DriverBase::COpenGL3DriverBase;
|
|
E_DRIVER_TYPE getDriverType() const override;
|
|
};
|
|
|
|
}
|
|
}
|