mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-04 14:37:46 -04:00
sdl: don't try gl on remote displays
This commit is contained in:
parent
39639dd1da
commit
c668921a45
3 changed files with 28 additions and 3 deletions
5
gl.c
5
gl.c
|
@ -131,6 +131,11 @@ out:
|
|||
return retval;
|
||||
}
|
||||
|
||||
void gl_announce(void)
|
||||
{
|
||||
printf("GL_RENDERER: %s\n", (char *)glGetString(GL_RENDERER));
|
||||
}
|
||||
|
||||
static float vertices[] = {
|
||||
-1.0f, 1.0f, 0.0f, // 0 0 1
|
||||
1.0f, 1.0f, 0.0f, // 1 ^
|
||||
|
|
8
gl.h
8
gl.h
|
@ -3,8 +3,9 @@
|
|||
|
||||
#ifdef HAVE_GLES
|
||||
|
||||
int gl_init(void *display, void *window, int *quirks);
|
||||
int gl_flip(const void *fb, int w, int h);
|
||||
int gl_init(void *display, void *window, int *quirks);
|
||||
void gl_announce(void);
|
||||
int gl_flip(const void *fb, int w, int h);
|
||||
void gl_finish(void);
|
||||
|
||||
/* for external flips */
|
||||
|
@ -17,6 +18,9 @@ static __inline int gl_init(void *display, void *window, int *quirks)
|
|||
{
|
||||
return -1;
|
||||
}
|
||||
static void gl_announce(void)
|
||||
{
|
||||
}
|
||||
static __inline int gl_flip(const void *fb, int w, int h)
|
||||
{
|
||||
return -1;
|
||||
|
|
18
plat_sdl.c
18
plat_sdl.c
|
@ -186,9 +186,11 @@ int plat_sdl_init(void)
|
|||
static const char *vout_list[] = { NULL, NULL, NULL, NULL, NULL };
|
||||
const SDL_VideoInfo *info;
|
||||
SDL_SysWMinfo wminfo;
|
||||
const char *env;
|
||||
int overlay_works = 0;
|
||||
int gl_works = 0;
|
||||
int i, ret, h;
|
||||
int try_gl;
|
||||
|
||||
ret = SDL_Init(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
|
||||
if (ret != 0) {
|
||||
|
@ -274,8 +276,22 @@ int plat_sdl_init(void)
|
|||
(void)wminfo;
|
||||
#endif
|
||||
|
||||
ret = gl_init(display, window, &gl_quirks);
|
||||
ret = -1;
|
||||
try_gl = 1;
|
||||
env = getenv("DISPLAY");
|
||||
if (env && env[0] != ':') {
|
||||
fprintf(stderr, "looks like a remote DISPLAY, "
|
||||
"not trying GL (use PICOFE_GL=1 to override)\n");
|
||||
// because some drivers just kill the program with no way to recover
|
||||
try_gl = 0;
|
||||
}
|
||||
env = getenv("PICOFE_GL");
|
||||
if (env)
|
||||
try_gl = atoi(env);
|
||||
if (try_gl)
|
||||
ret = gl_init(display, window, &gl_quirks);
|
||||
if (ret == 0) {
|
||||
gl_announce();
|
||||
gl_works = 1;
|
||||
gl_finish();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue