mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-01 23:54:21 +00:00
839df31347
This branch is the final step of fully supporting both OpenGL and OpenGL ES in the same binary. This of course only applies to EGL and won't work for GLX/AGL/WGL since they don't really support GL ES. The changes here actually aren't too terrible, basically change every #ifdef USE_GLES to a runtime check. This adds a DetectMode() function to the EGL context backend. EGL will iterate through each of the configs and check for GL, GLES3_KHR, and GLES2 bits After that it'll change the mode from _DETECT to whichever one is the best supported. After that point we'll just create a context with the mode that was detected
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
// This program 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, version 2.0.
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
// http://code.google.com/p/dolphin-emu/
|
|
#ifndef _INTERFACEEGL_H_
|
|
#define _INTERFACEEGL_H_
|
|
|
|
#include <EGL/egl.h>
|
|
#include "InterfaceBase.h"
|
|
|
|
class cPlatform;
|
|
|
|
class cInterfaceEGL : public cInterfaceBase
|
|
{
|
|
private:
|
|
cPlatform Platform;
|
|
void DetectMode();
|
|
public:
|
|
friend class cPlatform;
|
|
void SwapInterval(int Interval);
|
|
void Swap();
|
|
void SetMode(u32 mode) { s_opengl_mode = GLInterfaceMode::MODE_DETECT; }
|
|
void UpdateFPSDisplay(const char *Text);
|
|
void* GetProcAddress(std::string name);
|
|
bool Create(void *&window_handle);
|
|
bool MakeCurrent();
|
|
void Shutdown();
|
|
};
|
|
#endif
|
|
|