mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
221 lines
5.1 KiB
C
221 lines
5.1 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2014 2015 - Jean-Andre Santoni
|
|
*
|
|
* RetroArch 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 Found-
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* RetroArch 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 RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <signal.h>
|
|
|
|
#include "../../driver.h"
|
|
#include "../../general.h"
|
|
#include "../../runloop.h"
|
|
#include "../common/egl_common.h"
|
|
#include "../common/gl_common.h"
|
|
|
|
typedef struct {
|
|
egl_ctx_data_t egl;
|
|
bool resize;
|
|
unsigned width, height;
|
|
} vivante_ctx_data_t;
|
|
|
|
static void gfx_ctx_vivante_destroy(void *data)
|
|
{
|
|
vivante_ctx_data_t *viv = (vivante_ctx_data_t*)data;
|
|
egl_destroy(data);
|
|
|
|
viv->resize = false;
|
|
free(viv);
|
|
}
|
|
|
|
static void *gfx_ctx_vivante_init(void *video_driver)
|
|
{
|
|
EGLint n;
|
|
EGLint major, minor;
|
|
EGLint format;
|
|
static const EGLint attribs[] = {
|
|
#if 0
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
|
#endif
|
|
EGL_BLUE_SIZE, 5,
|
|
EGL_GREEN_SIZE, 6,
|
|
EGL_RED_SIZE, 5,
|
|
EGL_ALPHA_SIZE, 0,
|
|
EGL_SAMPLES, 0,
|
|
EGL_NONE
|
|
};
|
|
vivante_ctx_data_t *viv = (vivante_ctx_data_t*)calloc(1, sizeof(*viv));
|
|
|
|
if (!viv)
|
|
return NULL;
|
|
|
|
(void)video_driver;
|
|
|
|
egl_install_sighandlers();
|
|
|
|
if (!egl_init_context(viv, EGL_DEFAULT_DISPLAY, &major, &minor,
|
|
&n, attribs))
|
|
{
|
|
egl_report_error();
|
|
goto error;
|
|
}
|
|
|
|
return viv;
|
|
|
|
error:
|
|
RARCH_ERR("[Vivante fbdev]: EGL error: %d.\n", eglGetError());
|
|
gfx_ctx_vivante_destroy(viv);
|
|
return NULL;
|
|
}
|
|
|
|
static void gfx_ctx_vivante_check_window(void *data, bool *quit,
|
|
bool *resize, unsigned *width, unsigned *height, unsigned frame_count)
|
|
{
|
|
unsigned new_width, new_height;
|
|
|
|
egl_get_video_size(data, &new_width, &new_height);
|
|
|
|
if (new_width != *width || new_height != *height)
|
|
{
|
|
*width = new_width;
|
|
*height = new_height;
|
|
*resize = true;
|
|
}
|
|
|
|
*quit = g_egl_quit;
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_set_resize(void *data,
|
|
unsigned width, unsigned height)
|
|
{
|
|
(void)data;
|
|
(void)width;
|
|
(void)height;
|
|
return false;
|
|
}
|
|
|
|
static void gfx_ctx_vivante_update_window_title(void *data)
|
|
{
|
|
char buf[128] = {0};
|
|
char buf_fps[128] = {0};
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
(void)data;
|
|
|
|
video_monitor_get_fps(buf, sizeof(buf),
|
|
buf_fps, sizeof(buf_fps));
|
|
if (settings->fps_show)
|
|
runloop_msg_queue_push(buf_fps, 1, 1, false);
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_set_video_mode(void *data,
|
|
unsigned width, unsigned height,
|
|
bool fullscreen)
|
|
{
|
|
EGLNativeWindowType window;
|
|
static const EGLint attribs[] = {
|
|
EGL_CONTEXT_CLIENT_VERSION, 2, /* Use version 2, even for GLES3. */
|
|
EGL_NONE
|
|
};
|
|
vivante_ctx_data_t *viv = (vivante_ctx_data_t*)data;
|
|
|
|
/* Pick some arbitrary default. */
|
|
if (!width || !fullscreen)
|
|
width = 1280;
|
|
if (!height || !fullscreen)
|
|
height = 1024;
|
|
|
|
viv->width = width;
|
|
viv->height = height;
|
|
|
|
if (!egl_create_context(viv, attribs))
|
|
{
|
|
egl_report_error();
|
|
goto error;
|
|
}
|
|
|
|
window = fbCreateWindow(fbGetDisplayByIndex(0), 0, 0, 0, 0);
|
|
|
|
if (!egl_create_surface(viv, window))
|
|
goto error;
|
|
|
|
return true;
|
|
|
|
error:
|
|
RARCH_ERR("[Vivante fbdev]: EGL error: %d.\n", eglGetError());
|
|
gfx_ctx_vivante_destroy(data);
|
|
return false;
|
|
}
|
|
|
|
static void gfx_ctx_vivante_input_driver(void *data,
|
|
const input_driver_t **input, void **input_data)
|
|
{
|
|
(void)data;
|
|
*input = NULL;
|
|
*input_data = NULL;
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_bind_api(void *data,
|
|
enum gfx_ctx_api api, unsigned major, unsigned minor)
|
|
{
|
|
(void)data;
|
|
return api == GFX_CTX_OPENGL_ES_API;
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_has_focus(void *data)
|
|
{
|
|
(void)data;
|
|
return true;
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_suppress_screensaver(void *data, bool enable)
|
|
{
|
|
(void)data;
|
|
(void)enable;
|
|
return false;
|
|
}
|
|
|
|
static bool gfx_ctx_vivante_has_windowed(void *data)
|
|
{
|
|
(void)data;
|
|
return false;
|
|
}
|
|
|
|
const gfx_ctx_driver_t gfx_ctx_vivante_fbdev = {
|
|
gfx_ctx_vivante_init,
|
|
gfx_ctx_vivante_destroy,
|
|
gfx_ctx_vivante_bind_api,
|
|
egl_set_swap_interval,
|
|
gfx_ctx_vivante_set_video_mode,
|
|
egl_get_video_size,
|
|
NULL, /* get_video_output_size */
|
|
NULL, /* get_video_output_prev */
|
|
NULL, /* get_video_output_next */
|
|
NULL, /* get_metrics */
|
|
NULL,
|
|
gfx_ctx_vivante_update_window_title,
|
|
gfx_ctx_vivante_check_window,
|
|
gfx_ctx_vivante_set_resize,
|
|
gfx_ctx_vivante_has_focus,
|
|
gfx_ctx_vivante_suppress_screensaver,
|
|
gfx_ctx_vivante_has_windowed,
|
|
egl_swap_buffers,
|
|
gfx_ctx_vivante_input_driver,
|
|
egl_get_proc_address,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
"vivante-fbdev",
|
|
egl_bind_hw_render,
|
|
};
|