mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Who put this here
This commit is contained in:
parent
b79c12901b
commit
70ba204168
1 changed files with 3 additions and 13 deletions
|
@ -2,18 +2,6 @@
|
|||
|
||||
#include <glad/gl.h>
|
||||
|
||||
void loadGlFunctions(void* (*loadproc)(const char*)) {
|
||||
#ifdef __ANDROID__
|
||||
if (!gladLoadGLES2Loader(loadproc)) {
|
||||
Helpers::panic("OpenGL ES init failed");
|
||||
}
|
||||
#else
|
||||
if (!gladLoadGLLoader(reinterpret_cast<GLADloadproc>(loadproc))) {
|
||||
Helpers::panic("OpenGL init failed");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
FrontendSDL::FrontendSDL() {
|
||||
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_EVENTS) < 0) {
|
||||
Helpers::panic("Failed to initialize SDL2");
|
||||
|
@ -58,7 +46,9 @@ FrontendSDL::FrontendSDL() {
|
|||
Helpers::panic("OpenGL context creation failed: %s", SDL_GetError());
|
||||
}
|
||||
|
||||
loadGlFunctions(SDL_GL_GetProcAddress);
|
||||
if (!gladLoadGLLoader(reinterpret_cast<GLADloadproc>(SDL_GL_GetProcAddress))) {
|
||||
Helpers::panic("OpenGL init failed");
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef PANDA3DS_ENABLE_VULKAN
|
||||
|
|
Loading…
Add table
Reference in a new issue