2012-10-05 01:19:39 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 18:06:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2012-10-05 01:19:39 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2015-09-16 05:45:50 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <sys/system_properties.h>
|
|
|
|
|
|
|
|
#include <formats/image.h>
|
2012-10-05 01:19:39 +02:00
|
|
|
|
|
|
|
#include "../../driver.h"
|
2013-02-16 12:30:26 +01:00
|
|
|
#include "../../general.h"
|
2015-03-15 02:47:23 +01:00
|
|
|
#include "../../runloop.h"
|
2015-01-18 20:03:33 +01:00
|
|
|
#include "../video_monitor.h"
|
2015-04-09 04:57:17 +02:00
|
|
|
#include "../drivers/gl_common.h"
|
2012-10-05 01:19:39 +02:00
|
|
|
|
2015-09-16 05:45:50 +02:00
|
|
|
#include "../../frontend/drivers/platform_linux.h"
|
2012-10-05 01:19:39 +02:00
|
|
|
|
2015-04-21 00:57:51 +02:00
|
|
|
/* forward declaration */
|
|
|
|
int system_property_get(const char *name, char *value);
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
typedef struct gfx_ctx_android_data
|
|
|
|
{
|
|
|
|
bool g_use_hw_ctx;
|
|
|
|
EGLContext g_egl_hw_ctx;
|
|
|
|
EGLContext g_egl_ctx;
|
|
|
|
EGLSurface g_egl_surf;
|
|
|
|
EGLDisplay g_egl_dpy;
|
2015-03-21 01:15:03 +01:00
|
|
|
EGLConfig g_egl_config;
|
2014-10-24 18:58:53 +02:00
|
|
|
} gfx_ctx_android_data_t;
|
|
|
|
|
2014-04-14 13:17:05 +02:00
|
|
|
static bool g_es3;
|
2012-10-05 01:47:52 +02:00
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static void android_gfx_ctx_set_swap_interval(void *data, unsigned interval)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2015-03-18 19:40:00 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
|
|
|
|
|
|
|
android = (gfx_ctx_android_data_t*)driver->video_context_data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2015-01-10 17:51:00 +01:00
|
|
|
if (!android)
|
|
|
|
return;
|
|
|
|
|
|
|
|
eglSwapInterval(android->g_egl_dpy, interval);
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
static void android_gfx_ctx_destroy_resources(gfx_ctx_android_data_t *android)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!android)
|
|
|
|
return;
|
2014-06-20 04:34:42 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_dpy)
|
2014-06-20 04:34:42 +02:00
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_ctx)
|
2014-06-20 04:34:42 +02:00
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
eglMakeCurrent(android->g_egl_dpy,
|
|
|
|
EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
|
|
|
|
eglDestroyContext(android->g_egl_dpy, android->g_egl_ctx);
|
2014-06-20 04:34:42 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_hw_ctx)
|
|
|
|
eglDestroyContext(android->g_egl_dpy, android->g_egl_hw_ctx);
|
2014-06-20 04:34:42 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_surf)
|
|
|
|
eglDestroySurface(android->g_egl_dpy, android->g_egl_surf);
|
|
|
|
eglTerminate(android->g_egl_dpy);
|
2014-06-20 04:34:42 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
/* Be as careful as possible in deinit. */
|
|
|
|
|
|
|
|
android->g_egl_ctx = NULL;
|
|
|
|
android->g_egl_hw_ctx = NULL;
|
|
|
|
android->g_egl_surf = NULL;
|
|
|
|
android->g_egl_dpy = NULL;
|
2015-03-21 01:15:03 +01:00
|
|
|
android->g_egl_config = 0;
|
2014-10-24 18:58:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void android_gfx_ctx_destroy(void *data)
|
|
|
|
{
|
2015-03-18 20:26:55 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-03-18 19:40:00 +01:00
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
|
|
|
|
|
|
|
android = (gfx_ctx_android_data_t*)driver->video_context_data;
|
2014-10-24 18:58:53 +02:00
|
|
|
(void)data;
|
|
|
|
|
|
|
|
if (!android)
|
|
|
|
return;
|
|
|
|
|
|
|
|
android_gfx_ctx_destroy_resources(android);
|
2014-06-20 04:34:42 +02:00
|
|
|
|
2015-03-18 19:40:00 +01:00
|
|
|
if (driver->video_context_data)
|
|
|
|
free(driver->video_context_data);
|
|
|
|
driver->video_context_data = NULL;
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
static void android_gfx_ctx_get_video_size(void *data,
|
|
|
|
unsigned *width, unsigned *height)
|
2012-11-03 19:23:52 +01:00
|
|
|
{
|
2015-01-10 17:51:00 +01:00
|
|
|
EGLint gl_width, gl_height;
|
2015-03-18 19:40:00 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
|
|
|
|
|
|
|
android = (gfx_ctx_android_data_t*)
|
|
|
|
driver->video_context_data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
|
|
|
*width = 0;
|
|
|
|
*height = 0;
|
|
|
|
|
2015-01-10 17:51:00 +01:00
|
|
|
if (!android)
|
|
|
|
return;
|
|
|
|
if (!android->g_egl_dpy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
eglQuerySurface(android->g_egl_dpy,
|
|
|
|
android->g_egl_surf, EGL_WIDTH, &gl_width);
|
|
|
|
eglQuerySurface(android->g_egl_dpy,
|
|
|
|
android->g_egl_surf, EGL_HEIGHT, &gl_height);
|
|
|
|
*width = gl_width;
|
|
|
|
*height = gl_height;
|
2012-12-24 20:17:16 +01:00
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static bool android_gfx_ctx_init(void *data)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
int var;
|
2015-01-10 17:51:00 +01:00
|
|
|
EGLint num_config, egl_version_major, egl_version_minor;
|
|
|
|
EGLint format;
|
|
|
|
EGLint context_attributes[] = {
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, g_es3 ? 3 : 2,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
2012-10-05 01:19:39 +02:00
|
|
|
const EGLint attribs[] = {
|
2012-10-31 17:12:18 +01:00
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
|
|
|
EGL_BLUE_SIZE, 8,
|
|
|
|
EGL_GREEN_SIZE, 8,
|
|
|
|
EGL_RED_SIZE, 8,
|
2014-02-13 12:04:08 +01:00
|
|
|
EGL_ALPHA_SIZE, 8,
|
2012-10-31 17:12:18 +01:00
|
|
|
EGL_NONE
|
2012-10-21 19:56:36 +02:00
|
|
|
};
|
2015-03-18 19:40:00 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-01-10 17:51:00 +01:00
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
2015-01-18 22:39:23 +01:00
|
|
|
struct android_app *android_app = (struct android_app*)g_android;
|
2015-01-10 17:51:00 +01:00
|
|
|
|
|
|
|
if (!android_app)
|
|
|
|
return false;
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2015-01-10 17:51:00 +01:00
|
|
|
android = (gfx_ctx_android_data_t*)
|
2014-10-24 18:58:53 +02:00
|
|
|
calloc(1, sizeof(gfx_ctx_android_data_t));
|
|
|
|
|
|
|
|
if (!android)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
RARCH_LOG("Android EGL: GLES version = %d.\n", g_es3 ? 3 : 2);
|
|
|
|
|
|
|
|
android->g_egl_dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
|
2015-01-10 17:51:00 +01:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!android->g_egl_dpy)
|
2012-11-09 09:42:52 +01:00
|
|
|
{
|
2014-06-20 04:34:42 +02:00
|
|
|
RARCH_ERR("[Android/EGL]: Couldn't get EGL display.\n");
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
2012-11-09 09:42:52 +01:00
|
|
|
}
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!eglInitialize(android->g_egl_dpy,
|
|
|
|
&egl_version_major, &egl_version_minor))
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
RARCH_LOG("[ANDROID/EGL]: EGL version: %d.%d\n",
|
|
|
|
egl_version_major, egl_version_minor);
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!eglChooseConfig(android->g_egl_dpy,
|
2015-03-21 01:15:03 +01:00
|
|
|
attribs, &android->g_egl_config, 1, &num_config))
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
|
|
|
|
2015-03-21 01:15:03 +01:00
|
|
|
var = eglGetConfigAttrib(android->g_egl_dpy, android->g_egl_config,
|
2014-10-24 18:58:53 +02:00
|
|
|
EGL_NATIVE_VISUAL_ID, &format);
|
2012-11-09 20:46:58 +01:00
|
|
|
|
2012-11-09 21:20:55 +01:00
|
|
|
if (!var)
|
2012-11-09 09:42:52 +01:00
|
|
|
{
|
2012-11-09 20:46:58 +01:00
|
|
|
RARCH_ERR("eglGetConfigAttrib failed: %d.\n", var);
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
2012-11-09 09:42:52 +01:00
|
|
|
}
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2013-01-05 07:20:02 +01:00
|
|
|
ANativeWindow_setBuffersGeometry(android_app->window, 0, 0, format);
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
android->g_egl_ctx = eglCreateContext(android->g_egl_dpy,
|
2015-03-21 01:15:03 +01:00
|
|
|
android->g_egl_config, EGL_NO_CONTEXT, context_attributes);
|
2014-06-20 04:34:42 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_ctx == EGL_NO_CONTEXT)
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_use_hw_ctx)
|
2012-11-09 09:42:52 +01:00
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
android->g_egl_hw_ctx = eglCreateContext(android->g_egl_dpy,
|
2015-03-21 01:15:03 +01:00
|
|
|
android->g_egl_config, android->g_egl_ctx,
|
2014-06-20 04:34:42 +02:00
|
|
|
context_attributes);
|
2014-10-24 18:58:53 +02:00
|
|
|
RARCH_LOG("[Android/EGL]: Created shared context: %p.\n",
|
|
|
|
(void*)android->g_egl_hw_ctx);
|
2014-06-20 04:34:42 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (android->g_egl_hw_ctx == EGL_NO_CONTEXT)
|
2014-06-20 04:34:42 +02:00
|
|
|
goto error;
|
2012-11-09 09:42:52 +01:00
|
|
|
}
|
2012-10-21 19:56:36 +02:00
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
android->g_egl_surf = eglCreateWindowSurface(android->g_egl_dpy,
|
2015-03-21 01:15:03 +01:00
|
|
|
android->g_egl_config, android_app->window, 0);
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!android->g_egl_surf)
|
2014-06-20 04:34:42 +02:00
|
|
|
goto error;
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
if (!eglMakeCurrent(android->g_egl_dpy, android->g_egl_surf,
|
|
|
|
android->g_egl_surf, android->g_egl_ctx))
|
2012-10-21 19:56:36 +02:00
|
|
|
goto error;
|
|
|
|
|
2015-03-18 19:40:00 +01:00
|
|
|
driver->video_context_data = android;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2012-10-21 19:56:36 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
2014-10-24 18:58:53 +02:00
|
|
|
android_gfx_ctx_destroy_resources(android);
|
|
|
|
|
|
|
|
if (android)
|
|
|
|
free(android);
|
|
|
|
|
2012-10-21 19:56:36 +02:00
|
|
|
return false;
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static void android_gfx_ctx_swap_buffers(void *data)
|
2012-10-16 14:43:34 +02:00
|
|
|
{
|
2015-03-18 19:40:00 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
|
|
|
|
|
|
|
android = (gfx_ctx_android_data_t*)driver->video_context_data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2015-01-10 17:51:00 +01:00
|
|
|
if (android)
|
|
|
|
eglSwapBuffers(android->g_egl_dpy, android->g_egl_surf);
|
2012-10-16 14:43:34 +02:00
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static void android_gfx_ctx_check_window(void *data, bool *quit,
|
2012-10-05 01:19:39 +02:00
|
|
|
bool *resize, unsigned *width, unsigned *height, unsigned frame_count)
|
|
|
|
{
|
2014-10-24 18:58:53 +02:00
|
|
|
unsigned new_width, new_height;
|
2015-06-25 13:46:32 +02:00
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2012-10-05 01:19:39 +02:00
|
|
|
(void)frame_count;
|
2012-10-16 12:49:56 +02:00
|
|
|
|
|
|
|
*quit = false;
|
2012-12-27 23:30:27 +01:00
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
android_gfx_ctx_get_video_size(data, &new_width, &new_height);
|
2015-01-10 17:51:00 +01:00
|
|
|
|
2012-12-28 00:12:18 +01:00
|
|
|
if (new_width != *width || new_height != *height)
|
|
|
|
{
|
|
|
|
*width = new_width;
|
|
|
|
*height = new_height;
|
|
|
|
*resize = true;
|
|
|
|
}
|
2012-12-16 17:13:49 +01:00
|
|
|
|
2015-01-07 18:06:50 +01:00
|
|
|
/* Check if we are exiting. */
|
2015-06-25 13:46:32 +02:00
|
|
|
if (system->shutdown)
|
2012-10-21 16:37:15 +02:00
|
|
|
*quit = true;
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:58:53 +02:00
|
|
|
static void android_gfx_ctx_set_resize(void *data,
|
|
|
|
unsigned width, unsigned height)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2012-10-05 01:19:39 +02:00
|
|
|
(void)width;
|
|
|
|
(void)height;
|
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static void android_gfx_ctx_update_window_title(void *data)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2015-06-13 02:10:06 +02:00
|
|
|
char buf[128] = {0};
|
|
|
|
char buf_fps[128] = {0};
|
2015-03-20 22:08:36 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
2013-10-07 20:22:08 +02:00
|
|
|
|
2015-01-18 20:03:33 +01:00
|
|
|
video_monitor_get_fps(buf, sizeof(buf),
|
2015-03-07 23:03:56 +01:00
|
|
|
buf_fps, sizeof(buf_fps));
|
2015-03-20 22:08:36 +01:00
|
|
|
if (settings->fps_show)
|
2015-03-15 02:47:23 +01:00
|
|
|
rarch_main_msg_queue_push(buf_fps, 1, 1, false);
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static bool android_gfx_ctx_set_video_mode(void *data,
|
2012-10-05 01:19:39 +02:00
|
|
|
unsigned width, unsigned height,
|
2012-11-20 23:23:18 +01:00
|
|
|
bool fullscreen)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2012-10-05 01:19:39 +02:00
|
|
|
(void)width;
|
|
|
|
(void)height;
|
|
|
|
(void)fullscreen;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static void android_gfx_ctx_input_driver(void *data,
|
|
|
|
const input_driver_t **input, void **input_data)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2013-11-01 16:33:32 +01:00
|
|
|
void *androidinput = input_android.init();
|
2015-01-10 17:51:00 +01:00
|
|
|
|
|
|
|
(void)data;
|
|
|
|
|
2013-11-01 16:33:32 +01:00
|
|
|
*input = androidinput ? &input_android : NULL;
|
|
|
|
*input_data = androidinput;
|
2012-10-05 01:19:39 +02:00
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static gfx_ctx_proc_t android_gfx_ctx_get_proc_address(
|
|
|
|
const char *symbol)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
|
|
|
gfx_ctx_proc_t ret;
|
2015-01-10 17:51:00 +01:00
|
|
|
void *sym__ = NULL;
|
|
|
|
|
2015-10-26 03:18:13 +01:00
|
|
|
retro_assert(sizeof(void*) == sizeof(void (*)(void)));
|
2012-10-05 01:19:39 +02:00
|
|
|
|
2015-01-10 17:51:00 +01:00
|
|
|
sym__ = eglGetProcAddress(symbol);
|
2012-10-05 01:19:39 +02:00
|
|
|
memcpy(&ret, &sym__, sizeof(void*));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static bool android_gfx_ctx_bind_api(void *data,
|
|
|
|
enum gfx_ctx_api api, unsigned major, unsigned minor)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2015-01-10 17:51:00 +01:00
|
|
|
unsigned version = major * 100 + minor;
|
|
|
|
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2014-04-14 13:17:05 +02:00
|
|
|
|
|
|
|
if (version > 300)
|
|
|
|
return false;
|
|
|
|
if (version < 300)
|
|
|
|
g_es3 = false;
|
|
|
|
else if (version == 300)
|
|
|
|
g_es3 = true;
|
2012-10-05 01:19:39 +02:00
|
|
|
return api == GFX_CTX_OPENGL_ES_API;
|
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static bool android_gfx_ctx_has_focus(void *data)
|
2012-10-05 01:19:39 +02:00
|
|
|
{
|
2014-03-09 17:11:06 +01:00
|
|
|
(void)data;
|
2012-10-05 01:19:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-18 22:32:14 +01:00
|
|
|
static bool android_gfx_ctx_suppress_screensaver(void *data, bool enable)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
(void)enable;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-10-08 18:09:01 +02:00
|
|
|
static bool android_gfx_ctx_has_windowed(void *data)
|
2014-10-08 17:23:02 +02:00
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-06-20 04:34:42 +02:00
|
|
|
static void android_gfx_ctx_bind_hw_render(void *data, bool enable)
|
|
|
|
{
|
2015-03-18 19:40:00 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
gfx_ctx_android_data_t *android = NULL;
|
|
|
|
|
|
|
|
android = (gfx_ctx_android_data_t*)driver->video_context_data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
2014-06-20 04:34:42 +02:00
|
|
|
(void)data;
|
2014-10-24 18:58:53 +02:00
|
|
|
|
|
|
|
if (!android)
|
|
|
|
return;
|
|
|
|
|
|
|
|
android->g_use_hw_ctx = enable;
|
|
|
|
|
2015-01-10 17:51:00 +01:00
|
|
|
if (!android->g_egl_dpy)
|
|
|
|
return;
|
|
|
|
if (!android->g_egl_surf)
|
|
|
|
return;
|
|
|
|
|
|
|
|
eglMakeCurrent(android->g_egl_dpy, android->g_egl_surf,
|
|
|
|
android->g_egl_surf, enable ?
|
|
|
|
android->g_egl_hw_ctx : android->g_egl_ctx);
|
2014-06-20 04:34:42 +02:00
|
|
|
}
|
|
|
|
|
2015-04-21 00:57:51 +02:00
|
|
|
static int system_property_get_density(char *value)
|
2015-04-09 03:27:28 +02:00
|
|
|
{
|
2015-04-21 00:57:51 +02:00
|
|
|
FILE *pipe;
|
|
|
|
int length = 0;
|
2015-06-13 02:10:06 +02:00
|
|
|
char buffer[PATH_MAX_LENGTH] = {0};
|
|
|
|
char cmd[PATH_MAX_LENGTH] = {0};
|
|
|
|
char *curpos = NULL;
|
2015-04-09 03:27:28 +02:00
|
|
|
|
2015-04-21 00:57:51 +02:00
|
|
|
snprintf(cmd, sizeof(cmd), "wm density");
|
2015-04-20 22:14:04 +02:00
|
|
|
|
2015-04-21 00:57:51 +02:00
|
|
|
pipe = popen(cmd, "r");
|
|
|
|
|
|
|
|
if (!pipe)
|
|
|
|
{
|
|
|
|
RARCH_ERR("Could not create pipe.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
curpos = value;
|
|
|
|
|
|
|
|
while (!feof(pipe))
|
|
|
|
{
|
|
|
|
if (fgets(buffer, 128, pipe) != NULL)
|
|
|
|
{
|
|
|
|
int curlen = strlen(buffer);
|
|
|
|
|
|
|
|
memcpy(curpos, buffer, curlen);
|
2015-04-09 03:27:28 +02:00
|
|
|
|
2015-04-21 00:57:51 +02:00
|
|
|
curpos += curlen;
|
|
|
|
length += curlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*curpos = '\0';
|
|
|
|
|
|
|
|
pclose(pipe);
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2015-06-02 18:28:51 +02:00
|
|
|
static void dpi_get_density(char *s, size_t len)
|
2015-04-21 00:57:51 +02:00
|
|
|
{
|
2015-06-02 18:28:51 +02:00
|
|
|
system_property_get("ro.sf.lcd_density", s);
|
2015-04-21 00:57:51 +02:00
|
|
|
|
2015-06-02 18:28:51 +02:00
|
|
|
if (s[0] == '\0')
|
|
|
|
system_property_get_density(s);
|
2015-04-21 00:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool android_gfx_ctx_get_metrics(void *data,
|
|
|
|
enum display_metric_types type, float *value)
|
|
|
|
{
|
|
|
|
int dpi;
|
2015-06-13 02:10:06 +02:00
|
|
|
char density[PROP_VALUE_MAX] = {0};
|
2015-04-21 00:57:51 +02:00
|
|
|
dpi_get_density(density, sizeof(density));
|
2015-04-09 03:27:28 +02:00
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case DISPLAY_METRIC_MM_WIDTH:
|
|
|
|
return false;
|
|
|
|
case DISPLAY_METRIC_MM_HEIGHT:
|
|
|
|
return false;
|
|
|
|
case DISPLAY_METRIC_DPI:
|
2015-04-21 00:57:51 +02:00
|
|
|
if (density[0] == '\0')
|
|
|
|
return false;
|
|
|
|
dpi = atoi(density);
|
|
|
|
*value = (float)dpi;
|
2015-04-09 03:27:28 +02:00
|
|
|
break;
|
|
|
|
case DISPLAY_METRIC_NONE:
|
|
|
|
default:
|
|
|
|
*value = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-05 01:19:39 +02:00
|
|
|
const gfx_ctx_driver_t gfx_ctx_android = {
|
2014-10-08 18:09:01 +02:00
|
|
|
android_gfx_ctx_init,
|
|
|
|
android_gfx_ctx_destroy,
|
|
|
|
android_gfx_ctx_bind_api,
|
|
|
|
android_gfx_ctx_set_swap_interval,
|
|
|
|
android_gfx_ctx_set_video_mode,
|
|
|
|
android_gfx_ctx_get_video_size,
|
2015-02-24 21:36:23 +01:00
|
|
|
NULL, /* get_video_output_size */
|
|
|
|
NULL, /* get_video_output_prev */
|
|
|
|
NULL, /* get_video_output_next */
|
2015-04-09 03:27:28 +02:00
|
|
|
android_gfx_ctx_get_metrics,
|
2015-02-24 19:58:14 +01:00
|
|
|
NULL,
|
2014-10-08 18:09:01 +02:00
|
|
|
android_gfx_ctx_update_window_title,
|
|
|
|
android_gfx_ctx_check_window,
|
|
|
|
android_gfx_ctx_set_resize,
|
|
|
|
android_gfx_ctx_has_focus,
|
2015-01-18 22:32:14 +01:00
|
|
|
android_gfx_ctx_suppress_screensaver,
|
2014-10-08 18:09:01 +02:00
|
|
|
android_gfx_ctx_has_windowed,
|
|
|
|
android_gfx_ctx_swap_buffers,
|
|
|
|
android_gfx_ctx_input_driver,
|
|
|
|
android_gfx_ctx_get_proc_address,
|
2014-03-09 17:11:06 +01:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2013-03-29 13:46:11 +01:00
|
|
|
NULL,
|
2012-10-05 01:19:39 +02:00
|
|
|
"android",
|
2014-06-20 04:34:42 +02:00
|
|
|
android_gfx_ctx_bind_hw_render,
|
2012-10-05 01:19:39 +02:00
|
|
|
};
|