2019-10-18 19:57:08 +00:00
|
|
|
/*
|
2019-10-19 16:34:24 +00:00
|
|
|
Created on: Oct 19, 2019
|
2019-10-18 19:57:08 +00:00
|
|
|
|
|
|
|
Copyright 2019 flyinghead
|
|
|
|
|
|
|
|
This file is part of Flycast.
|
|
|
|
|
|
|
|
Flycast is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Flycast is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Flycast. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-10-19 16:34:24 +00:00
|
|
|
#include "gl_context.h"
|
2021-11-10 19:35:30 +00:00
|
|
|
|
2023-11-25 10:10:48 +00:00
|
|
|
#ifndef LIBRETRO
|
2021-11-10 19:35:30 +00:00
|
|
|
#include "rend/gles/opengl_driver.h"
|
2023-11-25 10:10:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <cstring>
|
2019-10-18 19:57:08 +00:00
|
|
|
|
2019-10-19 16:34:24 +00:00
|
|
|
void GLGraphicsContext::findGLVersion()
|
|
|
|
{
|
|
|
|
while (true)
|
|
|
|
if (glGetError() == GL_NO_ERROR)
|
|
|
|
break;
|
|
|
|
glGetIntegerv(GL_MAJOR_VERSION, &majorVersion);
|
|
|
|
if (glGetError() == GL_INVALID_ENUM)
|
|
|
|
majorVersion = 2;
|
2020-02-07 15:55:32 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
glGetIntegerv(GL_MINOR_VERSION, &minorVersion);
|
|
|
|
}
|
2019-10-19 16:34:24 +00:00
|
|
|
const char *version = (const char *)glGetString(GL_VERSION);
|
2021-11-10 19:35:30 +00:00
|
|
|
_isGLES = !strncmp(version, "OpenGL ES", 9);
|
2019-10-19 16:34:24 +00:00
|
|
|
INFO_LOG(RENDERER, "OpenGL version: %s", version);
|
2022-12-21 15:49:08 +00:00
|
|
|
|
|
|
|
const char *p = (const char *)glGetString(GL_RENDERER);
|
|
|
|
driverName = p != nullptr ? p : "unknown";
|
|
|
|
p = (const char *)glGetString(GL_VERSION);
|
|
|
|
driverVersion = p != nullptr ? p : "unknown";
|
2023-12-28 16:48:33 +00:00
|
|
|
p = (const char *)glGetString(GL_VENDOR);
|
|
|
|
std::string vendor = p != nullptr ? p : "";
|
|
|
|
if (vendor.substr(0, 4) == "ATI ")
|
|
|
|
amd = true;
|
|
|
|
else if (driverName.find(" ATI ") != std::string::npos
|
|
|
|
|| driverName.find(" AMD ") != std::string::npos)
|
|
|
|
// mesa
|
|
|
|
amd = true;
|
|
|
|
else
|
|
|
|
amd = false;
|
2019-10-19 16:34:24 +00:00
|
|
|
}
|
2019-10-18 19:57:08 +00:00
|
|
|
|
2021-11-10 19:35:30 +00:00
|
|
|
void GLGraphicsContext::postInit()
|
2019-10-18 19:57:08 +00:00
|
|
|
{
|
2021-11-10 19:35:30 +00:00
|
|
|
instance = this;
|
2019-10-19 16:34:24 +00:00
|
|
|
findGLVersion();
|
2022-04-13 16:06:19 +00:00
|
|
|
resetUIDriver();
|
2019-10-18 19:57:08 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 19:35:30 +00:00
|
|
|
void GLGraphicsContext::preTerm()
|
2019-10-18 19:57:08 +00:00
|
|
|
{
|
2021-11-10 19:35:30 +00:00
|
|
|
#ifndef LIBRETRO
|
|
|
|
imguiDriver.reset();
|
|
|
|
#endif
|
|
|
|
instance = nullptr;
|
|
|
|
}
|
|
|
|
|
2022-04-13 16:06:19 +00:00
|
|
|
void GLGraphicsContext::resetUIDriver()
|
|
|
|
{
|
|
|
|
#ifndef LIBRETRO
|
2022-06-26 13:23:30 +00:00
|
|
|
imguiDriver.reset();
|
2022-04-13 16:06:19 +00:00
|
|
|
imguiDriver = std::unique_ptr<ImGuiDriver>(new OpenGLDriver());
|
|
|
|
#endif
|
|
|
|
}
|