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
|
|
|
|
|
|
|
|
|
|
#include "Driver.h"
|
2023-04-15 23:20:30 +02:00
|
|
|
|
#include <cassert>
|
2023-04-20 16:37:15 +02:00
|
|
|
|
#include "mt_opengl.h"
|
2023-03-03 18:29:36 +01:00
|
|
|
|
|
|
|
|
|
namespace irr {
|
|
|
|
|
namespace video {
|
|
|
|
|
|
|
|
|
|
E_DRIVER_TYPE COpenGL3Driver::getDriverType() const {
|
|
|
|
|
return EDT_OPENGL3;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-15 15:52:15 +02:00
|
|
|
|
OpenGLVersion COpenGL3Driver::getVersionFromOpenGL() const {
|
|
|
|
|
GLint major, minor, profile;
|
|
|
|
|
glGetIntegerv(GL_MAJOR_VERSION, &major);
|
|
|
|
|
glGetIntegerv(GL_MINOR_VERSION, &minor);
|
|
|
|
|
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
|
|
|
|
|
// The spec is clear a context can’t be both core and compatibility at the same time.
|
|
|
|
|
// However, the returned value is a mask. Ask Khronos why. -- numzero
|
|
|
|
|
if (profile & GL_CONTEXT_COMPATIBILITY_PROFILE_BIT)
|
|
|
|
|
return {OpenGLSpec::Compat, (u8)major, (u8)minor, 0};
|
|
|
|
|
if (profile & GL_CONTEXT_CORE_PROFILE_BIT)
|
|
|
|
|
return {OpenGLSpec::Core, (u8)major, (u8)minor, 0};
|
|
|
|
|
os::Printer::log("Got unrecognized OpenGL profile", ELL_ERROR);
|
|
|
|
|
return {OpenGLSpec::Core, (u8)major, (u8)minor, 0};
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-15 17:11:08 +02:00
|
|
|
|
void COpenGL3Driver::initFeatures() {
|
|
|
|
|
assert (Version.Spec == OpenGLSpec::Compat);
|
2023-04-16 00:03:33 +02:00
|
|
|
|
assert (isVersionAtLeast(3, 2));
|
2023-04-15 17:11:08 +02:00
|
|
|
|
initExtensionsNew();
|
|
|
|
|
|
2023-04-20 16:37:15 +02:00
|
|
|
|
AnisotropicFilterSupported = isVersionAtLeast(4, 6) || queryExtension("GL_ARB_texture_filter_anisotropic") || queryExtension("GL_EXT_texture_filter_anisotropic");
|
|
|
|
|
|
2023-04-15 17:11:08 +02:00
|
|
|
|
// COGLESCoreExtensionHandler::Feature
|
|
|
|
|
static_assert(MATERIAL_MAX_TEXTURES <= 16, "Only up to 16 textures are guaranteed");
|
|
|
|
|
Feature.BlendOperation = true;
|
|
|
|
|
Feature.ColorAttachment = GetInteger(GL_MAX_COLOR_ATTACHMENTS);
|
|
|
|
|
Feature.MaxTextureUnits = MATERIAL_MAX_TEXTURES;
|
|
|
|
|
Feature.MultipleRenderTarget = GetInteger(GL_MAX_DRAW_BUFFERS);
|
|
|
|
|
|
|
|
|
|
// COGLESCoreExtensionHandler
|
2023-04-20 16:37:15 +02:00
|
|
|
|
if (AnisotropicFilterSupported)
|
|
|
|
|
MaxAnisotropy = GetInteger(GL.MAX_TEXTURE_MAX_ANISOTROPY);
|
2023-04-15 17:11:08 +02:00
|
|
|
|
MaxIndices = GetInteger(GL_MAX_ELEMENTS_INDICES);
|
|
|
|
|
MaxTextureSize = GetInteger(GL_MAX_TEXTURE_SIZE);
|
|
|
|
|
glGetFloatv(GL_MAX_TEXTURE_LOD_BIAS, &MaxTextureLODBias);
|
|
|
|
|
glGetFloatv(GL_ALIASED_LINE_WIDTH_RANGE, DimAliasedLine);
|
|
|
|
|
DimAliasedPoint[0] = 1.0f;
|
|
|
|
|
DimAliasedPoint[1] = 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-03 18:29:36 +01:00
|
|
|
|
IVideoDriver* createOpenGL3Driver(const SIrrlichtCreationParameters& params, io::IFileSystem* io, IContextManager* contextManager)
|
|
|
|
|
{
|
2023-04-15 15:52:15 +02:00
|
|
|
|
os::Printer::log("Using COpenGL3Driver", ELL_INFORMATION);
|
2023-03-03 18:29:36 +01:00
|
|
|
|
COpenGL3Driver* driver = new COpenGL3Driver(params, io, contextManager);
|
|
|
|
|
driver->genericDriverInit(params.WindowSize, params.Stencilbuffer); // don't call in constructor, it uses virtual function calls of driver
|
|
|
|
|
return driver;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|