Files
dolphin/Source/Core/Common/GL/GLInterface/EGL.cpp
T

228 lines
5.4 KiB
C++
Raw Normal View History

// Copyright 2012 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
2014-02-17 05:18:15 -05:00
// Refer to the license.txt file included.
2012-12-17 15:01:52 -06:00
#include <array>
#include <cstdlib>
#include "Common/GL/GLInterface/EGL.h"
#include "Common/Logging/Log.h"
2012-12-17 15:01:52 -06:00
// Show the current FPS
2012-12-26 00:34:09 -06:00
void cInterfaceEGL::Swap()
2012-12-17 15:01:52 -06:00
{
2014-08-09 09:49:45 -04:00
eglSwapBuffers(egl_dpy, egl_surf);
2012-12-17 15:01:52 -06:00
}
void cInterfaceEGL::SwapInterval(int Interval)
{
2015-09-19 06:12:20 +12:00
eglSwapInterval(egl_dpy, Interval);
}
2012-12-17 15:01:52 -06:00
2014-03-12 15:33:41 -04:00
void* cInterfaceEGL::GetFuncAddress(const std::string& name)
{
return (void*)eglGetProcAddress(name.c_str());
}
2014-01-18 04:11:59 +00:00
void cInterfaceEGL::DetectMode()
{
if (s_opengl_mode != MODE_DETECT)
return;
EGLint num_configs;
bool supportsGL = false, supportsGLES2 = false, supportsGLES3 = false;
std::array<int, 3> renderable_types = {
EGL_OPENGL_BIT,
(1 << 6), /* EGL_OPENGL_ES3_BIT_KHR */
EGL_OPENGL_ES2_BIT,
};
2014-01-18 04:11:59 +00:00
for (auto renderable_type : renderable_types)
2014-02-16 23:51:41 -05:00
{
// attributes for a visual in RGBA format with at least
// 8 bits per color
int attribs[] = {
EGL_RED_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_BLUE_SIZE, 8,
EGL_RENDERABLE_TYPE, renderable_type,
EGL_NONE
};
2014-01-18 04:11:59 +00:00
// Get how many configs there are
if (!eglChooseConfig( egl_dpy, attribs, nullptr, 0, &num_configs))
2014-01-18 04:11:59 +00:00
{
INFO_LOG(VIDEO, "Error: couldn't get an EGL visual config\n");
2015-08-17 18:52:17 -05:00
continue;
}
2015-08-17 18:52:17 -05:00
EGLConfig* config = new EGLConfig[num_configs];
// Get all the configurations
if (!eglChooseConfig(egl_dpy, attribs, config, num_configs, &num_configs))
{
INFO_LOG(VIDEO, "Error: couldn't get an EGL visual config\n");
2015-08-17 18:52:17 -05:00
delete[] config;
continue;
}
for (int i = 0; i < num_configs; ++i)
{
EGLint attribVal;
bool ret;
ret = eglGetConfigAttrib(egl_dpy, config[i], EGL_RENDERABLE_TYPE, &attribVal);
if (ret)
{
if (attribVal & EGL_OPENGL_BIT)
supportsGL = true;
if (attribVal & (1 << 6)) /* EGL_OPENGL_ES3_BIT_KHR */
supportsGLES3 = true;
if (attribVal & EGL_OPENGL_ES2_BIT)
supportsGLES2 = true;
}
2014-01-18 04:11:59 +00:00
}
2015-08-17 18:52:17 -05:00
delete[] config;
2014-01-18 04:11:59 +00:00
}
2014-01-18 04:11:59 +00:00
if (supportsGL)
s_opengl_mode = GLInterfaceMode::MODE_OPENGL;
else if (supportsGLES3)
s_opengl_mode = GLInterfaceMode::MODE_OPENGLES3;
else if (supportsGLES2)
s_opengl_mode = GLInterfaceMode::MODE_OPENGLES2;
2014-01-18 04:11:59 +00:00
if (s_opengl_mode == GLInterfaceMode::MODE_DETECT) // Errored before we found a mode
s_opengl_mode = GLInterfaceMode::MODE_OPENGL; // Fall back to OpenGL
}
2012-12-17 15:01:52 -06:00
// Create rendering window.
2014-02-16 23:51:41 -05:00
// Call browser: Core.cpp:EmuThread() > main.cpp:Video_Initialize()
bool cInterfaceEGL::Create(void *window_handle, bool core)
2012-12-17 15:01:52 -06:00
{
const char *s;
EGLint egl_major, egl_minor;
2014-01-18 04:11:59 +00:00
2014-08-09 10:31:27 -04:00
egl_dpy = OpenDisplay();
2014-01-18 04:11:59 +00:00
2014-08-09 09:49:45 -04:00
if (!egl_dpy)
2014-02-16 23:51:41 -05:00
{
2014-01-18 04:11:59 +00:00
INFO_LOG(VIDEO, "Error: eglGetDisplay() failed\n");
return false;
}
2014-08-09 09:49:45 -04:00
if (!eglInitialize(egl_dpy, &egl_major, &egl_minor))
2014-02-16 23:51:41 -05:00
{
2014-01-18 04:11:59 +00:00
INFO_LOG(VIDEO, "Error: eglInitialize() failed\n");
return false;
}
/* Detection code */
EGLConfig config;
EGLint num_configs;
2012-12-17 15:01:52 -06:00
2014-01-18 04:11:59 +00:00
DetectMode();
2012-12-17 15:01:52 -06:00
// attributes for a visual in RGBA format with at least
// 8 bits per color
2012-12-17 15:01:52 -06:00
int attribs[] = {
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
2012-12-17 15:01:52 -06:00
EGL_RED_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_BLUE_SIZE, 8,
EGL_NONE };
EGLint ctx_attribs[] = {
2012-12-17 15:01:52 -06:00
EGL_CONTEXT_CLIENT_VERSION, 2,
EGL_NONE
};
switch (s_opengl_mode)
{
case MODE_OPENGL:
attribs[1] = EGL_OPENGL_BIT;
2014-02-16 23:51:41 -05:00
ctx_attribs[0] = EGL_NONE;
break;
case MODE_OPENGLES2:
attribs[1] = EGL_OPENGL_ES2_BIT;
ctx_attribs[1] = 2;
break;
case MODE_OPENGLES3:
attribs[1] = (1 << 6); /* EGL_OPENGL_ES3_BIT_KHR */
ctx_attribs[1] = 3;
break;
default:
ERROR_LOG(VIDEO, "Unknown opengl mode set\n");
return false;
break;
}
2012-12-17 15:01:52 -06:00
2014-08-09 09:49:45 -04:00
if (!eglChooseConfig( egl_dpy, attribs, &config, 1, &num_configs))
2014-02-16 23:51:41 -05:00
{
2014-01-18 04:11:59 +00:00
INFO_LOG(VIDEO, "Error: couldn't get an EGL visual config\n");
exit(1);
}
2012-12-17 15:01:52 -06:00
2013-12-12 22:08:54 +00:00
if (s_opengl_mode == MODE_OPENGL)
eglBindAPI(EGL_OPENGL_API);
else
eglBindAPI(EGL_OPENGL_ES_API);
2014-08-09 10:31:27 -04:00
EGLNativeWindowType host_window = (EGLNativeWindowType) window_handle;
EGLNativeWindowType native_window = InitializePlatform(host_window, config);
2014-08-09 09:49:45 -04:00
s = eglQueryString(egl_dpy, EGL_VERSION);
INFO_LOG(VIDEO, "EGL_VERSION = %s\n", s);
2014-08-09 09:49:45 -04:00
s = eglQueryString(egl_dpy, EGL_VENDOR);
INFO_LOG(VIDEO, "EGL_VENDOR = %s\n", s);
2014-08-09 09:49:45 -04:00
s = eglQueryString(egl_dpy, EGL_EXTENSIONS);
INFO_LOG(VIDEO, "EGL_EXTENSIONS = %s\n", s);
2014-08-09 09:49:45 -04:00
s = eglQueryString(egl_dpy, EGL_CLIENT_APIS);
INFO_LOG(VIDEO, "EGL_CLIENT_APIS = %s\n", s);
2014-08-09 09:49:45 -04:00
egl_ctx = eglCreateContext(egl_dpy, config, EGL_NO_CONTEXT, ctx_attribs );
if (!egl_ctx)
2014-02-16 23:51:41 -05:00
{
INFO_LOG(VIDEO, "Error: eglCreateContext failed\n");
exit(1);
}
2014-08-09 09:49:45 -04:00
egl_surf = eglCreateWindowSurface(egl_dpy, config, native_window, nullptr);
if (!egl_surf)
2014-02-16 23:51:41 -05:00
{
INFO_LOG(VIDEO, "Error: eglCreateWindowSurface failed\n");
exit(1);
}
2012-12-17 15:01:52 -06:00
return true;
}
bool cInterfaceEGL::MakeCurrent()
{
2014-08-09 09:49:45 -04:00
return eglMakeCurrent(egl_dpy, egl_surf, egl_surf, egl_ctx);
2012-12-17 15:01:52 -06:00
}
bool cInterfaceEGL::ClearCurrent()
{
return eglMakeCurrent(egl_dpy, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
}
2012-12-17 15:01:52 -06:00
// Close backend
void cInterfaceEGL::Shutdown()
{
2014-08-09 10:31:27 -04:00
ShutdownPlatform();
2014-08-09 09:49:45 -04:00
if (egl_ctx && !eglMakeCurrent(egl_dpy, egl_surf, egl_surf, egl_ctx))
2012-12-17 15:01:52 -06:00
NOTICE_LOG(VIDEO, "Could not release drawing context.");
2014-08-09 09:49:45 -04:00
if (egl_ctx)
2012-12-17 15:01:52 -06:00
{
2014-08-09 09:49:45 -04:00
eglMakeCurrent(egl_dpy, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
if (!eglDestroyContext(egl_dpy, egl_ctx))
NOTICE_LOG(VIDEO, "Could not destroy drawing context.");
2014-08-09 09:49:45 -04:00
if (!eglDestroySurface(egl_dpy, egl_surf))
NOTICE_LOG(VIDEO, "Could not destroy window surface.");
2014-08-09 09:49:45 -04:00
if (!eglTerminate(egl_dpy))
NOTICE_LOG(VIDEO, "Could not destroy display connection.");
2014-08-09 09:49:45 -04:00
egl_ctx = nullptr;
2012-12-17 15:01:52 -06:00
}
}