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"
|
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace video
|
|
|
|
{
|
2023-03-03 18:29:36 +01:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
/// OpenGL 3+ driver
|
|
|
|
///
|
|
|
|
/// For OpenGL 3.2 and higher. Compatibility profile is required currently.
|
|
|
|
class COpenGL3Driver : public COpenGL3DriverBase
|
|
|
|
{
|
|
|
|
friend IVideoDriver *createOpenGL3Driver(const SIrrlichtCreationParameters ¶ms, io::IFileSystem *io, IContextManager *contextManager);
|
2023-04-15 15:52:15 +02:00
|
|
|
|
2024-03-20 19:35:52 +01:00
|
|
|
public:
|
|
|
|
using COpenGL3DriverBase::COpenGL3DriverBase;
|
|
|
|
E_DRIVER_TYPE getDriverType() const override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
OpenGLVersion getVersionFromOpenGL() const override;
|
|
|
|
void initFeatures() override;
|
|
|
|
};
|
2023-03-03 18:29:36 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|