2023-03-03 18:29:36 +01:00
|
|
|
// 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 {
|
|
|
|
|
2023-04-15 15:52:15 +02:00
|
|
|
/// OpenGL ES 2+ driver
|
|
|
|
///
|
|
|
|
/// For OpenGL ES 2.0 and higher.
|
2023-03-03 18:29:36 +01:00
|
|
|
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;
|
2023-04-15 15:52:15 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
OpenGLVersion getVersionFromOpenGL() const override;
|
2023-04-15 17:11:08 +02:00
|
|
|
void initFeatures() override;
|
2023-03-03 18:29:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|