mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-31 18:31:04 +00:00
Make SDL2 default on macOS (#16039)
This commit is contained in:
parent
d795c28af8
commit
0bdd5f294e
12 changed files with 22 additions and 14 deletions
30
irr/src/OpenGLES2/DriverGLES2.h
Normal file
30
irr/src/OpenGLES2/DriverGLES2.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
// 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
|
||||
{
|
||||
|
||||
/// OpenGL ES 2+ driver
|
||||
///
|
||||
/// For OpenGL ES 2.0 and higher.
|
||||
class COpenGLES2Driver final : public COpenGL3DriverBase
|
||||
{
|
||||
friend IVideoDriver *createOGLES2Driver(const SIrrlichtCreationParameters ¶ms, io::IFileSystem *io, IContextManager *contextManager);
|
||||
|
||||
public:
|
||||
using COpenGL3DriverBase::COpenGL3DriverBase;
|
||||
E_DRIVER_TYPE getDriverType() const override;
|
||||
|
||||
protected:
|
||||
OpenGLVersion getVersionFromOpenGL() const override;
|
||||
void initFeatures() override;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue