2015-01-12 17:26:46 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2015-08-30 18:04:52 +00:00
|
|
|
*
|
2015-01-12 17:26:46 +00: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2015-09-05 18:03:27 +00:00
|
|
|
|
2015-11-21 08:32:51 +00:00
|
|
|
#include <file/config_file.h>
|
|
|
|
|
2015-01-12 19:20:58 +00:00
|
|
|
#include "video_thread_wrapper.h"
|
2015-01-26 19:30:48 +00:00
|
|
|
#include "video_pixel_converter.h"
|
2015-11-21 06:54:42 +00:00
|
|
|
#include "video_context_driver.h"
|
2015-01-26 19:30:48 +00:00
|
|
|
#include "video_monitor.h"
|
2015-11-21 08:54:55 +00:00
|
|
|
#include "../config.def.h"
|
2015-01-12 17:28:32 +00:00
|
|
|
#include "../general.h"
|
2015-05-20 03:35:41 +00:00
|
|
|
#include "../performance.h"
|
2015-10-26 07:55:59 +00:00
|
|
|
#include "../string_list_special.h"
|
2015-01-12 17:26:46 +00:00
|
|
|
|
2015-11-21 10:22:34 +00:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "../menu/menu_setting.h"
|
|
|
|
#endif
|
|
|
|
|
2015-05-20 03:35:41 +00:00
|
|
|
#ifndef MEASURE_FRAME_TIME_SAMPLES_COUNT
|
|
|
|
#define MEASURE_FRAME_TIME_SAMPLES_COUNT (2 * 1024)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct video_driver_state
|
|
|
|
{
|
|
|
|
retro_time_t frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
|
2015-05-20 17:56:12 +00:00
|
|
|
struct retro_hw_render_callback hw_render_callback;
|
2015-05-20 03:35:41 +00:00
|
|
|
uint64_t frame_time_samples_count;
|
2015-05-20 18:59:12 +00:00
|
|
|
enum retro_pixel_format pix_fmt;
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
unsigned video_width;
|
|
|
|
unsigned video_height;
|
2015-05-20 16:24:45 +00:00
|
|
|
float aspect_ratio;
|
2015-05-20 18:49:52 +00:00
|
|
|
|
2015-05-20 19:36:08 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
const void *data;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
size_t pitch;
|
|
|
|
} frame_cache;
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_softfilter_t *filter;
|
|
|
|
|
|
|
|
void *buffer;
|
|
|
|
unsigned scale;
|
|
|
|
unsigned out_bpp;
|
|
|
|
bool out_rgb32;
|
|
|
|
} filter;
|
2015-05-20 03:35:41 +00:00
|
|
|
} video_driver_state_t;
|
|
|
|
|
|
|
|
static video_driver_state_t video_state;
|
2015-05-20 00:55:04 +00:00
|
|
|
|
2015-01-12 17:26:46 +00:00
|
|
|
static const video_driver_t *video_drivers[] = {
|
|
|
|
#ifdef HAVE_OPENGL
|
|
|
|
&video_gl,
|
|
|
|
#endif
|
|
|
|
#ifdef XENON
|
|
|
|
&video_xenon360,
|
|
|
|
#endif
|
2015-04-03 18:36:19 +00:00
|
|
|
#if defined(HAVE_D3D)
|
2015-01-12 17:26:46 +00:00
|
|
|
&video_d3d,
|
|
|
|
#endif
|
2015-08-30 18:04:52 +00:00
|
|
|
#ifdef HAVE_VITA2D
|
|
|
|
&video_vita2d,
|
2015-01-12 17:26:46 +00:00
|
|
|
#endif
|
|
|
|
#ifdef PSP
|
|
|
|
&video_psp1,
|
|
|
|
#endif
|
2015-04-01 21:14:13 +00:00
|
|
|
#ifdef _3DS
|
|
|
|
&video_ctr,
|
|
|
|
#endif
|
2015-01-12 17:26:46 +00:00
|
|
|
#ifdef HAVE_SDL
|
|
|
|
&video_sdl,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
&video_sdl2,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_XVIDEO
|
|
|
|
&video_xvideo,
|
|
|
|
#endif
|
|
|
|
#ifdef GEKKO
|
|
|
|
&video_gx,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_VG
|
|
|
|
&video_vg,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OMAP
|
|
|
|
&video_omap,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_EXYNOS
|
|
|
|
&video_exynos,
|
2016-01-10 11:04:32 +00:00
|
|
|
#endif
|
2015-03-13 04:59:52 +00:00
|
|
|
#ifdef HAVE_DISPMANX
|
|
|
|
&video_dispmanx,
|
|
|
|
#endif
|
2016-01-10 11:04:32 +00:00
|
|
|
#ifdef HAVE_SUNXI
|
|
|
|
&video_sunxi,
|
2015-10-11 14:29:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
&video_xshm,
|
2015-01-12 17:26:46 +00:00
|
|
|
#endif
|
|
|
|
&video_null,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_driver_find_handle:
|
2015-01-15 20:10:36 +00:00
|
|
|
* @idx : index of driver to get handle to.
|
2015-01-12 17:26:46 +00:00
|
|
|
*
|
|
|
|
* Returns: handle to video driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
2015-01-15 20:10:36 +00:00
|
|
|
const void *video_driver_find_handle(int idx)
|
2015-01-12 17:26:46 +00:00
|
|
|
{
|
2015-01-15 20:10:36 +00:00
|
|
|
const void *drv = video_drivers[idx];
|
2015-01-12 17:26:46 +00:00
|
|
|
if (!drv)
|
|
|
|
return NULL;
|
|
|
|
return drv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_driver_find_ident:
|
2015-01-15 20:10:36 +00:00
|
|
|
* @idx : index of driver to get handle to.
|
2015-01-12 17:26:46 +00:00
|
|
|
*
|
|
|
|
* Returns: Human-readable identifier of video driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
2015-01-15 20:10:36 +00:00
|
|
|
const char *video_driver_find_ident(int idx)
|
2015-01-12 17:26:46 +00:00
|
|
|
{
|
2015-01-15 20:10:36 +00:00
|
|
|
const video_driver_t *drv = video_drivers[idx];
|
2015-01-12 17:26:46 +00:00
|
|
|
if (!drv)
|
|
|
|
return NULL;
|
|
|
|
return drv->ident;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* config_get_video_driver_options:
|
|
|
|
*
|
|
|
|
* Get an enumerated list of all video driver names, separated by '|'.
|
|
|
|
*
|
|
|
|
* Returns: string listing of all video driver names, separated by '|'.
|
|
|
|
**/
|
|
|
|
const char* config_get_video_driver_options(void)
|
|
|
|
{
|
2015-10-26 18:41:20 +00:00
|
|
|
return char_list_new_special(STRING_LIST_VIDEO_DRIVERS, NULL);
|
2015-01-12 17:26:46 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 14:58:48 +00:00
|
|
|
static bool find_video_driver(void)
|
2015-01-12 17:26:46 +00:00
|
|
|
{
|
|
|
|
int i;
|
2015-03-20 19:43:22 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
settings_t *settings = config_get_ptr();
|
2015-03-18 18:40:00 +00:00
|
|
|
|
2015-01-12 17:26:46 +00:00
|
|
|
#if defined(HAVE_OPENGL) && defined(HAVE_FBO)
|
2015-05-20 17:56:12 +00:00
|
|
|
if (video_state.hw_render_callback.context_type)
|
2015-01-12 17:26:46 +00:00
|
|
|
{
|
|
|
|
RARCH_LOG("Using HW render, OpenGL driver forced.\n");
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video = &video_gl;
|
2015-11-20 14:58:48 +00:00
|
|
|
return true;
|
2015-01-12 17:26:46 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (driver->frontend_ctx &&
|
|
|
|
driver->frontend_ctx->get_video_driver)
|
2015-01-12 17:26:46 +00:00
|
|
|
{
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video = driver->frontend_ctx->get_video_driver();
|
2015-01-12 17:26:46 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (driver->video)
|
2015-11-20 14:58:48 +00:00
|
|
|
return true;
|
2015-01-12 17:26:46 +00:00
|
|
|
RARCH_WARN("Frontend supports get_video_driver() but did not specify one.\n");
|
|
|
|
}
|
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
i = find_driver_index("video_driver", settings->video.driver);
|
2015-01-12 17:26:46 +00:00
|
|
|
if (i >= 0)
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video = (const video_driver_t*)video_driver_find_handle(i);
|
2015-01-12 17:26:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any video driver named \"%s\"\n",
|
2015-03-20 19:43:22 +00:00
|
|
|
settings->video.driver);
|
2015-01-12 17:26:46 +00:00
|
|
|
RARCH_LOG_OUTPUT("Available video drivers are:\n");
|
|
|
|
for (d = 0; video_driver_find_handle(d); d++)
|
|
|
|
RARCH_LOG_OUTPUT("\t%s\n", video_driver_find_ident(d));
|
|
|
|
RARCH_WARN("Going to default to first video driver...\n");
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video = (const video_driver_t*)video_driver_find_handle(0);
|
2015-01-12 17:26:46 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (!driver->video)
|
2015-10-26 02:18:13 +00:00
|
|
|
retro_fail(1, "find_video_driver()");
|
2015-01-12 17:26:46 +00:00
|
|
|
}
|
2015-11-20 14:58:48 +00:00
|
|
|
|
|
|
|
return true;
|
2015-01-12 17:26:46 +00:00
|
|
|
}
|
2015-01-12 19:20:58 +00:00
|
|
|
|
|
|
|
/**
|
2015-03-21 22:46:49 +00:00
|
|
|
* video_driver_get_ptr:
|
2015-01-12 19:20:58 +00:00
|
|
|
*
|
2015-08-30 18:04:52 +00:00
|
|
|
* Use this if you need the real video driver
|
2015-01-12 19:20:58 +00:00
|
|
|
* and driver data pointers.
|
|
|
|
*
|
|
|
|
* Returns: video driver's userdata.
|
|
|
|
**/
|
2015-11-20 17:50:21 +00:00
|
|
|
void *video_driver_get_ptr(void)
|
2015-01-12 19:20:58 +00:00
|
|
|
{
|
2015-03-20 19:43:22 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
|
2015-01-12 19:20:58 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2015-08-30 21:19:45 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
if (settings->video.threaded
|
2015-05-20 17:56:12 +00:00
|
|
|
&& !video_state.hw_render_callback.context_type)
|
2015-11-20 17:50:21 +00:00
|
|
|
return rarch_threaded_video_get_ptr(NULL);
|
2015-01-12 19:20:58 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
return driver->video_data;
|
2015-01-12 19:20:58 +00:00
|
|
|
}
|
2015-01-19 03:19:30 +00:00
|
|
|
|
2015-07-24 00:24:33 +00:00
|
|
|
#define video_driver_get_poke_ptr(driver) (driver) ? driver->video_poke : NULL
|
2015-04-11 03:57:53 +00:00
|
|
|
|
2015-07-24 00:40:18 +00:00
|
|
|
#define video_driver_ctx_get_ptr(driver) (driver) ? driver->video : NULL
|
2015-04-11 04:09:24 +00:00
|
|
|
|
2015-04-26 14:46:56 +00:00
|
|
|
const char *video_driver_get_ident(void)
|
|
|
|
{
|
2015-07-24 00:40:18 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-07-24 00:24:33 +00:00
|
|
|
return (video) ? video->ident : NULL;
|
2015-04-26 14:46:56 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 03:19:30 +00:00
|
|
|
/**
|
|
|
|
* video_driver_get_current_framebuffer:
|
|
|
|
*
|
|
|
|
* Gets pointer to current hardware renderer framebuffer object.
|
|
|
|
* Used by RETRO_ENVIRONMENT_SET_HW_RENDER.
|
|
|
|
*
|
|
|
|
* Returns: pointer to hardware framebuffer object, otherwise 0.
|
|
|
|
**/
|
|
|
|
uintptr_t video_driver_get_current_framebuffer(void)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-04-11 03:57:53 +00:00
|
|
|
|
|
|
|
if (poke && poke->get_current_framebuffer)
|
|
|
|
return poke->get_current_framebuffer(driver->video_data);
|
2015-01-19 03:19:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-08-03 21:01:07 +00:00
|
|
|
static uint64_t video_frame_count;
|
2015-05-09 13:54:51 +00:00
|
|
|
|
2015-01-19 03:19:30 +00:00
|
|
|
retro_proc_address_t video_driver_get_proc_address(const char *sym)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-04-11 03:57:53 +00:00
|
|
|
|
|
|
|
if (poke && poke->get_proc_address)
|
|
|
|
return poke->get_proc_address(driver->video_data, sym);
|
2015-01-19 03:19:30 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-02-10 16:20:02 +00:00
|
|
|
bool video_driver_set_shader(enum rarch_shader_type type,
|
2015-03-22 21:17:52 +00:00
|
|
|
const char *path)
|
2015-02-10 16:20:02 +00:00
|
|
|
{
|
2015-07-08 15:19:14 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-03-22 21:17:52 +00:00
|
|
|
|
2015-09-28 14:20:26 +00:00
|
|
|
if (video && video->set_shader)
|
2015-04-11 04:17:59 +00:00
|
|
|
return video->set_shader(driver->video_data, type, path);
|
|
|
|
return false;
|
2015-02-10 16:20:02 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
static void deinit_video_filter(void)
|
|
|
|
{
|
2015-05-20 18:49:52 +00:00
|
|
|
rarch_softfilter_free(video_state.filter.filter);
|
2015-11-12 13:57:26 +00:00
|
|
|
#ifdef _3DS
|
|
|
|
linearFree(video_state.filter.buffer);
|
|
|
|
#else
|
2015-05-20 18:49:52 +00:00
|
|
|
free(video_state.filter.buffer);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2015-05-20 18:49:52 +00:00
|
|
|
memset(&video_state.filter, 0, sizeof(video_state.filter));
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void init_video_filter(enum retro_pixel_format colfmt)
|
|
|
|
{
|
|
|
|
unsigned width, height, pow2_x, pow2_y, maxsize;
|
|
|
|
struct retro_game_geometry *geom = NULL;
|
2015-03-20 19:43:22 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-08-30 18:04:52 +00:00
|
|
|
struct retro_system_av_info *av_info =
|
2015-05-20 16:57:17 +00:00
|
|
|
video_viewport_get_system_av_info();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
deinit_video_filter();
|
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
if (!*settings->video.softfilter_plugin)
|
2015-01-26 19:30:48 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Deprecated format. Gets pre-converted. */
|
|
|
|
if (colfmt == RETRO_PIXEL_FORMAT_0RGB1555)
|
|
|
|
colfmt = RETRO_PIXEL_FORMAT_RGB565;
|
|
|
|
|
2015-05-20 17:56:12 +00:00
|
|
|
if (video_state.hw_render_callback.context_type)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_WARN("Cannot use CPU filters when hardware rendering is used.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-20 16:57:17 +00:00
|
|
|
geom = av_info ? (struct retro_game_geometry*)&av_info->geometry : NULL;
|
2015-09-28 14:20:26 +00:00
|
|
|
|
|
|
|
if (!geom)
|
|
|
|
return;
|
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
width = geom->max_width;
|
|
|
|
height = geom->max_height;
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
video_state.filter.filter = rarch_softfilter_new(
|
2015-03-20 19:43:22 +00:00
|
|
|
settings->video.softfilter_plugin,
|
2015-01-26 19:30:48 +00:00
|
|
|
RARCH_SOFTFILTER_THREADS_AUTO, colfmt, width, height);
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
if (!video_state.filter.filter)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to load filter.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
rarch_softfilter_get_max_output_size(video_state.filter.filter,
|
2015-01-26 19:30:48 +00:00
|
|
|
&width, &height);
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
pow2_x = next_pow2(width);
|
|
|
|
pow2_y = next_pow2(height);
|
2015-08-30 18:04:52 +00:00
|
|
|
maxsize = max(pow2_x, pow2_y);
|
2015-05-20 18:49:52 +00:00
|
|
|
video_state.filter.scale = maxsize / RARCH_SCALE_BASE;
|
|
|
|
video_state.filter.out_rgb32 = rarch_softfilter_get_output_format(
|
|
|
|
video_state.filter.filter) == RETRO_PIXEL_FORMAT_XRGB8888;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
video_state.filter.out_bpp = video_state.filter.out_rgb32 ?
|
2015-01-26 19:30:48 +00:00
|
|
|
sizeof(uint32_t) : sizeof(uint16_t);
|
|
|
|
|
|
|
|
/* TODO: Aligned output. */
|
2015-11-12 13:57:26 +00:00
|
|
|
#ifdef _3DS
|
|
|
|
video_state.filter.buffer = linearMemAlign(width * height * video_state.filter.out_bpp, 0x80);
|
|
|
|
#else
|
2015-05-20 18:49:52 +00:00
|
|
|
video_state.filter.buffer = malloc(width * height * video_state.filter.out_bpp);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2015-05-20 18:49:52 +00:00
|
|
|
if (!video_state.filter.buffer)
|
2015-01-26 19:30:48 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
RARCH_ERR("Softfilter initialization failed.\n");
|
|
|
|
deinit_video_filter();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_video_input(const input_driver_t *tmp)
|
|
|
|
{
|
2015-03-18 18:40:00 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
|
2015-08-03 21:01:07 +00:00
|
|
|
/* Reset video frame count */
|
|
|
|
video_frame_count = 0;
|
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
/* Video driver didn't provide an input driver,
|
|
|
|
* so we use configured one. */
|
|
|
|
RARCH_LOG("Graphics driver did not initialize an input driver. Attempting to pick a suitable driver.\n");
|
|
|
|
|
|
|
|
if (tmp)
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->input = tmp;
|
2015-01-26 19:30:48 +00:00
|
|
|
else
|
|
|
|
find_input_driver();
|
|
|
|
|
2015-11-20 20:07:15 +00:00
|
|
|
/* This should never really happen as tmp (driver.input) is always
|
|
|
|
* found before this in find_driver_input(), or we have aborted
|
|
|
|
* in a similar fashion anyways. */
|
2015-03-18 18:40:00 +00:00
|
|
|
if (!driver->input)
|
2015-11-20 20:07:15 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-23 06:07:28 +00:00
|
|
|
driver->input_data = input_driver_init();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (driver->input_data)
|
2015-01-26 19:30:48 +00:00
|
|
|
return;
|
|
|
|
|
2015-11-20 20:07:15 +00:00
|
|
|
error:
|
2015-01-26 19:30:48 +00:00
|
|
|
RARCH_ERR("Cannot initialize input driver. Exiting ...\n");
|
2015-10-26 02:18:13 +00:00
|
|
|
retro_fail(1, "init_video_input()");
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 17:57:04 +00:00
|
|
|
static void video_driver_unset_callback(void)
|
|
|
|
{
|
|
|
|
struct retro_hw_render_callback *hw_render =
|
|
|
|
video_driver_callback();
|
|
|
|
|
|
|
|
if (hw_render)
|
|
|
|
hw_render = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-20 20:05:27 +00:00
|
|
|
/**
|
|
|
|
* video_monitor_compute_fps_statistics:
|
|
|
|
*
|
|
|
|
* Computes monitor FPS statistics.
|
|
|
|
**/
|
|
|
|
static void video_monitor_compute_fps_statistics(void)
|
|
|
|
{
|
|
|
|
double avg_fps = 0.0, stddev = 0.0;
|
|
|
|
unsigned samples = 0;
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
|
|
|
if (settings->video.threaded)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Monitor FPS estimation is disabled for threaded video.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_state.frame_time_samples_count < 2 * MEASURE_FRAME_TIME_SAMPLES_COUNT)
|
|
|
|
{
|
|
|
|
RARCH_LOG(
|
|
|
|
"Does not have enough samples for monitor refresh rate estimation. Requires to run for at least %u frames.\n",
|
|
|
|
2 * MEASURE_FRAME_TIME_SAMPLES_COUNT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_monitor_fps_statistics(&avg_fps, &stddev, &samples))
|
|
|
|
{
|
|
|
|
RARCH_LOG("Average monitor Hz: %.6f Hz. (%.3f %% frame time deviation, based on %u last samples).\n",
|
|
|
|
avg_fps, 100.0 * stddev, samples);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 18:01:13 +00:00
|
|
|
static bool uninit_video_input(void)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2015-03-18 18:40:00 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
|
2015-04-13 09:26:02 +00:00
|
|
|
event_command(EVENT_CMD_OVERLAY_DEINIT);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (
|
2015-03-18 18:40:00 +00:00
|
|
|
!driver->input_data_own &&
|
2015-03-23 06:15:41 +00:00
|
|
|
(driver->input_data != driver->video_data)
|
|
|
|
)
|
|
|
|
input_driver_free();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (
|
2015-03-18 18:40:00 +00:00
|
|
|
!driver->video_data_own &&
|
|
|
|
driver->video_data &&
|
|
|
|
driver->video &&
|
|
|
|
driver->video->free)
|
|
|
|
driver->video->free(driver->video_data);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
deinit_pixel_converter();
|
|
|
|
|
|
|
|
deinit_video_filter();
|
|
|
|
|
2015-05-20 17:56:12 +00:00
|
|
|
video_driver_unset_callback();
|
2015-04-13 09:26:02 +00:00
|
|
|
event_command(EVENT_CMD_SHADER_DIR_DEINIT);
|
2015-01-26 19:30:48 +00:00
|
|
|
video_monitor_compute_fps_statistics();
|
2015-11-20 18:01:13 +00:00
|
|
|
|
|
|
|
return true;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 18:01:13 +00:00
|
|
|
static bool init_video(void)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
unsigned max_dim, scale, width, height;
|
2015-04-11 03:44:35 +00:00
|
|
|
video_viewport_t *custom_vp = NULL;
|
|
|
|
const input_driver_t *tmp = NULL;
|
2015-01-26 19:30:48 +00:00
|
|
|
const struct retro_game_geometry *geom = NULL;
|
2015-04-11 03:44:35 +00:00
|
|
|
video_info_t video = {0};
|
2015-01-26 19:30:48 +00:00
|
|
|
static uint16_t dummy_pixels[32] = {0};
|
2015-04-11 03:44:35 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
settings_t *settings = config_get_ptr();
|
2015-06-25 11:36:04 +00:00
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
2015-08-30 18:04:52 +00:00
|
|
|
struct retro_system_av_info *av_info =
|
2015-05-20 16:57:17 +00:00
|
|
|
video_viewport_get_system_av_info();
|
2015-04-11 03:44:35 +00:00
|
|
|
|
2015-05-20 18:59:12 +00:00
|
|
|
init_video_filter(video_state.pix_fmt);
|
2015-04-13 09:26:02 +00:00
|
|
|
event_command(EVENT_CMD_SHADER_DIR_INIT);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-05-20 16:57:17 +00:00
|
|
|
if (av_info)
|
|
|
|
geom = (const struct retro_game_geometry*)&av_info->geometry;
|
2015-09-28 14:57:07 +00:00
|
|
|
|
|
|
|
if (!geom)
|
|
|
|
{
|
|
|
|
RARCH_ERR("AV geometry not initialized, cannot initialize video driver.\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-09-28 14:57:07 +00:00
|
|
|
}
|
|
|
|
|
2015-03-22 06:32:06 +00:00
|
|
|
max_dim = max(geom->max_width, geom->max_height);
|
|
|
|
scale = next_pow2(max_dim) / RARCH_SCALE_BASE;
|
|
|
|
scale = max(scale, 1);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
if (video_state.filter.filter)
|
|
|
|
scale = video_state.filter.scale;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
/* Update core-dependent aspect ratio values. */
|
|
|
|
video_viewport_set_square_pixel(geom->base_width, geom->base_height);
|
|
|
|
video_viewport_set_core();
|
|
|
|
video_viewport_set_config();
|
|
|
|
|
|
|
|
/* Update CUSTOM viewport. */
|
2015-05-20 17:12:27 +00:00
|
|
|
custom_vp = video_viewport_get_custom();
|
2015-03-21 03:43:18 +00:00
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
if (settings->video.aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
float default_aspect = aspectratio_lut[ASPECT_RATIO_CORE].value;
|
2015-08-30 18:04:52 +00:00
|
|
|
aspectratio_lut[ASPECT_RATIO_CUSTOM].value =
|
2015-01-26 19:30:48 +00:00
|
|
|
(custom_vp->width && custom_vp->height) ?
|
|
|
|
(float)custom_vp->width / custom_vp->height : default_aspect;
|
|
|
|
}
|
|
|
|
|
2015-05-20 16:24:45 +00:00
|
|
|
video_driver_set_aspect_ratio_value(
|
|
|
|
aspectratio_lut[settings->video.aspect_ratio_idx].value);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
if (settings->video.fullscreen)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2015-03-20 19:43:22 +00:00
|
|
|
width = settings->video.fullscreen_x;
|
|
|
|
height = settings->video.fullscreen_y;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-03-20 19:43:22 +00:00
|
|
|
if (settings->video.force_aspect)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
/* Do rounding here to simplify integer scale correctness. */
|
2015-08-30 18:04:52 +00:00
|
|
|
unsigned base_width =
|
2015-05-20 16:24:45 +00:00
|
|
|
roundf(geom->base_height * video_driver_get_aspect_ratio());
|
2015-03-21 03:43:18 +00:00
|
|
|
width = roundf(base_width * settings->video.scale);
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
else
|
2015-03-21 03:43:18 +00:00
|
|
|
width = roundf(geom->base_width * settings->video.scale);
|
2015-04-11 04:23:40 +00:00
|
|
|
height = roundf(geom->base_height * settings->video.scale);
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (width && height)
|
|
|
|
RARCH_LOG("Video @ %ux%u\n", width, height);
|
|
|
|
else
|
|
|
|
RARCH_LOG("Video @ fullscreen\n");
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->display_type = RARCH_DISPLAY_NONE;
|
|
|
|
driver->video_display = 0;
|
|
|
|
driver->video_window = 0;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (!init_video_pixel_converter(RARCH_SCALE_BASE * scale))
|
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to initialize pixel converter.\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-20 19:43:22 +00:00
|
|
|
video.width = width;
|
|
|
|
video.height = height;
|
|
|
|
video.fullscreen = settings->video.fullscreen;
|
2015-06-25 11:36:04 +00:00
|
|
|
video.vsync = settings->video.vsync && !system->force_nonblock;
|
2015-03-20 19:43:22 +00:00
|
|
|
video.force_aspect = settings->video.force_aspect;
|
2015-01-26 19:30:48 +00:00
|
|
|
#ifdef GEKKO
|
2015-03-20 19:43:22 +00:00
|
|
|
video.viwidth = settings->video.viwidth;
|
|
|
|
video.vfilter = settings->video.vfilter;
|
2015-01-26 19:30:48 +00:00
|
|
|
#endif
|
2015-03-20 19:43:22 +00:00
|
|
|
video.smooth = settings->video.smooth;
|
|
|
|
video.input_scale = scale;
|
2015-08-30 18:04:52 +00:00
|
|
|
video.rgb32 = video_state.filter.filter ?
|
|
|
|
video_state.filter.out_rgb32 :
|
2015-05-20 18:59:12 +00:00
|
|
|
(video_state.pix_fmt == RETRO_PIXEL_FORMAT_XRGB8888);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
tmp = (const input_driver_t*)driver->input;
|
2015-01-26 19:30:48 +00:00
|
|
|
/* Need to grab the "real" video driver interface on a reinit. */
|
2015-11-20 14:58:48 +00:00
|
|
|
video_driver_ctl(RARCH_DISPLAY_CTL_FIND_DRIVER, NULL);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
2015-05-20 17:56:12 +00:00
|
|
|
if (settings->video.threaded && !video_state.hw_render_callback.context_type)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
/* Can't do hardware rendering with threaded driver currently. */
|
|
|
|
RARCH_LOG("Starting threaded video driver ...\n");
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (!rarch_threaded_video_init(&driver->video, &driver->video_data,
|
|
|
|
&driver->input, &driver->input_data,
|
|
|
|
driver->video, &video))
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot open threaded video driver ... Exiting ...\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video_data = driver->video->init(&video, &driver->input,
|
|
|
|
&driver->input_data);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (!driver->video_data)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot open video driver ... Exiting ...\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
driver->video_poke = NULL;
|
|
|
|
if (driver->video->poke_interface)
|
|
|
|
driver->video->poke_interface(driver->video_data, &driver->video_poke);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (driver->video->viewport_info && (!custom_vp->width ||
|
2015-01-26 19:30:48 +00:00
|
|
|
!custom_vp->height))
|
|
|
|
{
|
|
|
|
/* Force custom viewport to have sane parameters. */
|
|
|
|
custom_vp->width = width;
|
|
|
|
custom_vp->height = height;
|
2015-03-22 20:28:50 +00:00
|
|
|
video_driver_viewport_info(custom_vp);
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-22 09:38:26 +00:00
|
|
|
video_driver_set_rotation(
|
2015-06-25 11:36:04 +00:00
|
|
|
(settings->video.rotation + system->rotation) % 4);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-04-11 04:12:27 +00:00
|
|
|
video_driver_suppress_screensaver(settings->ui.suspend_screensaver_enable);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-03-18 18:40:00 +00:00
|
|
|
if (!driver->input)
|
2015-01-26 19:30:48 +00:00
|
|
|
init_video_input(tmp);
|
|
|
|
|
2015-04-13 09:26:02 +00:00
|
|
|
event_command(EVENT_CMD_OVERLAY_DEINIT);
|
|
|
|
event_command(EVENT_CMD_OVERLAY_INIT);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-05-20 19:13:25 +00:00
|
|
|
video_driver_cached_frame_set(&dummy_pixels, 4, 4, 8);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-02-12 17:59:29 +00:00
|
|
|
#if defined(PSP)
|
2015-03-22 18:42:22 +00:00
|
|
|
video_driver_set_texture_frame(&dummy_pixels, false, 1, 1, 1.0f);
|
2015-02-12 17:59:29 +00:00
|
|
|
#endif
|
2015-11-20 17:55:01 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
retro_fail(1, "init_video()");
|
|
|
|
return false;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
2015-03-22 06:20:55 +00:00
|
|
|
|
2015-04-11 04:12:27 +00:00
|
|
|
bool video_driver_suppress_screensaver(bool enable)
|
|
|
|
{
|
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-04-11 04:12:27 +00:00
|
|
|
|
|
|
|
return video->suppress_screensaver(driver->video_data, enable);
|
|
|
|
}
|
|
|
|
|
2015-03-22 09:38:26 +00:00
|
|
|
|
2015-04-26 17:46:59 +00:00
|
|
|
bool video_driver_set_viewport(unsigned width, unsigned height,
|
|
|
|
bool force_fullscreen, bool allow_rotate)
|
|
|
|
{
|
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-04-26 17:46:59 +00:00
|
|
|
|
2015-09-28 14:57:07 +00:00
|
|
|
if (video && video->set_viewport)
|
2015-04-26 17:46:59 +00:00
|
|
|
{
|
|
|
|
video->set_viewport(driver->video_data, width, height,
|
|
|
|
force_fullscreen, allow_rotate);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-22 09:38:26 +00:00
|
|
|
bool video_driver_set_rotation(unsigned rotation)
|
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-03-22 09:38:26 +00:00
|
|
|
|
2015-09-28 14:57:07 +00:00
|
|
|
if (video && video->set_rotation)
|
2015-03-23 06:25:18 +00:00
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
video->set_rotation(driver->video_data, rotation);
|
2015-03-23 06:25:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-03-22 09:38:26 +00:00
|
|
|
}
|
2015-03-22 17:38:11 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
|
2015-11-21 07:39:46 +00:00
|
|
|
bool video_driver_set_video_mode(unsigned width,
|
2015-03-22 17:38:11 +00:00
|
|
|
unsigned height, bool fullscreen)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 17:38:11 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->set_video_mode)
|
2015-11-21 07:39:46 +00:00
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
poke->set_video_mode(driver->video_data,
|
2015-03-23 06:31:01 +00:00
|
|
|
width, height, fullscreen);
|
2015-11-21 07:39:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gfx_ctx_set_video_mode(driver->video_context_data, width, height, fullscreen);
|
2015-03-22 17:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_video_output_size(unsigned *width, unsigned *height)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 17:38:11 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->get_video_output_size)
|
2015-03-23 06:31:01 +00:00
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
poke->get_video_output_size(driver->video_data, width, height);
|
2015-03-23 06:31:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-03-22 17:38:11 +00:00
|
|
|
}
|
|
|
|
|
2015-03-22 17:48:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
void video_driver_set_osd_msg(const char *msg,
|
|
|
|
const struct font_params *params, void *font)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 17:48:24 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->set_osd_msg)
|
|
|
|
poke->set_osd_msg(driver->video_data, msg, params, font);
|
2015-03-22 17:48:24 +00:00
|
|
|
}
|
2015-03-22 17:59:16 +00:00
|
|
|
|
|
|
|
void video_driver_set_texture_enable(bool enable, bool fullscreen)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 17:59:16 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->set_texture_enable)
|
|
|
|
poke->set_texture_enable(driver->video_data,
|
2015-03-23 06:31:01 +00:00
|
|
|
enable, fullscreen);
|
2015-03-22 17:59:16 +00:00
|
|
|
#endif
|
|
|
|
}
|
2015-03-22 18:15:34 +00:00
|
|
|
|
|
|
|
void video_driver_set_texture_frame(const void *frame, bool rgb32,
|
|
|
|
unsigned width, unsigned height, float alpha)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 18:15:34 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->set_texture_frame)
|
|
|
|
poke->set_texture_frame(driver->video_data,
|
|
|
|
frame, rgb32, width, height, alpha);
|
2015-03-22 18:15:34 +00:00
|
|
|
#endif
|
|
|
|
}
|
2015-03-22 20:28:50 +00:00
|
|
|
|
|
|
|
bool video_driver_viewport_info(struct video_viewport *vp)
|
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-03-22 20:28:50 +00:00
|
|
|
|
2015-09-28 14:57:07 +00:00
|
|
|
if (video && video->viewport_info)
|
2015-03-23 06:25:18 +00:00
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
video->viewport_info(driver->video_data, vp);
|
2015-03-23 06:25:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-03-22 20:28:50 +00:00
|
|
|
}
|
2015-03-22 20:57:17 +00:00
|
|
|
|
2015-03-22 21:17:52 +00:00
|
|
|
|
2015-03-23 03:32:12 +00:00
|
|
|
#ifdef HAVE_OVERLAY
|
2015-03-22 22:44:58 +00:00
|
|
|
bool video_driver_overlay_interface(const video_overlay_interface_t **iface)
|
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-03-22 22:44:58 +00:00
|
|
|
|
2015-09-28 15:18:48 +00:00
|
|
|
if (video && video->overlay_interface)
|
2015-03-23 06:25:18 +00:00
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
video->overlay_interface(driver->video_data, iface);
|
2015-03-23 06:25:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-03-22 22:44:58 +00:00
|
|
|
}
|
2015-03-23 03:32:12 +00:00
|
|
|
#endif
|
2015-03-22 22:52:01 +00:00
|
|
|
|
2015-09-28 14:57:07 +00:00
|
|
|
void *video_driver_read_frame_raw(unsigned *width,
|
2015-03-22 22:52:01 +00:00
|
|
|
unsigned *height, size_t *pitch)
|
|
|
|
{
|
2015-04-11 04:09:24 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:40:18 +00:00
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
2015-03-22 22:52:01 +00:00
|
|
|
|
2015-09-28 14:57:07 +00:00
|
|
|
if (video && video->read_frame_raw)
|
2015-04-11 04:09:24 +00:00
|
|
|
return video->read_frame_raw(driver->video_data, width,
|
2015-03-23 06:25:18 +00:00
|
|
|
height, pitch);
|
|
|
|
return NULL;
|
2015-03-22 22:52:01 +00:00
|
|
|
}
|
2015-03-22 23:39:42 +00:00
|
|
|
|
|
|
|
void video_driver_set_filtering(unsigned index, bool smooth)
|
|
|
|
{
|
2015-04-11 03:57:53 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-07-24 00:24:33 +00:00
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-03-22 23:39:42 +00:00
|
|
|
|
2015-04-11 03:57:53 +00:00
|
|
|
if (poke && poke->set_filtering)
|
|
|
|
poke->set_filtering(driver->video_data, index, smooth);
|
2015-03-22 23:39:42 +00:00
|
|
|
}
|
2015-03-22 23:42:55 +00:00
|
|
|
|
2015-05-20 19:29:23 +00:00
|
|
|
void video_driver_cached_frame_set_ptr(const void *data)
|
|
|
|
{
|
2015-05-20 19:36:08 +00:00
|
|
|
if (!data)
|
2015-05-20 19:29:23 +00:00
|
|
|
return;
|
|
|
|
|
2015-05-20 19:36:08 +00:00
|
|
|
video_state.frame_cache.data = data;
|
2015-05-20 19:29:23 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 19:13:25 +00:00
|
|
|
void video_driver_cached_frame_set(const void *data, unsigned width,
|
|
|
|
unsigned height, size_t pitch)
|
|
|
|
{
|
2015-05-20 19:36:08 +00:00
|
|
|
video_state.frame_cache.data = data;
|
|
|
|
video_state.frame_cache.width = width;
|
|
|
|
video_state.frame_cache.height = height;
|
|
|
|
video_state.frame_cache.pitch = pitch;
|
2015-05-20 19:13:25 +00:00
|
|
|
}
|
|
|
|
|
2015-06-17 12:29:09 +00:00
|
|
|
void video_driver_cached_frame_get(const void **data, unsigned *width,
|
2015-05-20 19:29:23 +00:00
|
|
|
unsigned *height, size_t *pitch)
|
|
|
|
{
|
2015-05-20 19:36:08 +00:00
|
|
|
if (data)
|
2015-06-17 12:29:09 +00:00
|
|
|
*data = video_state.frame_cache.data;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (width)
|
|
|
|
*width = video_state.frame_cache.width;
|
|
|
|
if (height)
|
|
|
|
*height = video_state.frame_cache.height;
|
|
|
|
if (pitch)
|
|
|
|
*pitch = video_state.frame_cache.pitch;
|
2015-05-20 19:29:23 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 22:29:46 +00:00
|
|
|
void video_driver_get_size(unsigned *width, unsigned *height)
|
|
|
|
{
|
|
|
|
if (width)
|
2015-05-20 03:35:41 +00:00
|
|
|
*width = video_state.video_width;
|
2015-05-19 22:29:46 +00:00
|
|
|
if (height)
|
2015-05-20 03:35:41 +00:00
|
|
|
*height = video_state.video_height;
|
2015-05-19 22:29:46 +00:00
|
|
|
}
|
2015-05-19 23:39:35 +00:00
|
|
|
|
|
|
|
void video_driver_set_size_width(unsigned width)
|
|
|
|
{
|
2015-05-20 03:35:41 +00:00
|
|
|
video_state.video_width = width;
|
2015-05-19 23:39:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_size_height(unsigned height)
|
|
|
|
{
|
2015-05-20 03:35:41 +00:00
|
|
|
video_state.video_height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_monitor_set_refresh_rate:
|
|
|
|
* @hz : New refresh rate for monitor.
|
|
|
|
*
|
|
|
|
* Sets monitor refresh rate to new value.
|
|
|
|
**/
|
|
|
|
void video_monitor_set_refresh_rate(float hz)
|
|
|
|
{
|
|
|
|
char msg[PATH_MAX_LENGTH];
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
|
|
|
snprintf(msg, sizeof(msg), "Setting refresh rate to: %.3f Hz.", hz);
|
|
|
|
rarch_main_msg_queue_push(msg, 1, 180, false);
|
|
|
|
RARCH_LOG("%s\n", msg);
|
|
|
|
|
|
|
|
settings->video.refresh_rate = hz;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_monitor_fps_statistics
|
|
|
|
* @refresh_rate : Monitor refresh rate.
|
|
|
|
* @deviation : Deviation from measured refresh rate.
|
|
|
|
* @sample_points : Amount of sampled points.
|
|
|
|
*
|
|
|
|
* Gets the monitor FPS statistics based on the current
|
|
|
|
* runtime.
|
|
|
|
*
|
|
|
|
* Returns: true (1) on success.
|
|
|
|
* false (0) if:
|
|
|
|
* a) threaded video mode is enabled
|
|
|
|
* b) less than 2 frame time samples.
|
|
|
|
* c) FPS monitor enable is off.
|
|
|
|
**/
|
|
|
|
bool video_monitor_fps_statistics(double *refresh_rate,
|
|
|
|
double *deviation, unsigned *sample_points)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
retro_time_t accum = 0, avg, accum_var = 0;
|
|
|
|
unsigned samples = 0;
|
|
|
|
settings_t *settings = config_get_ptr();
|
2015-08-30 18:04:52 +00:00
|
|
|
|
2015-05-20 03:35:41 +00:00
|
|
|
samples = min(MEASURE_FRAME_TIME_SAMPLES_COUNT,
|
|
|
|
video_state.frame_time_samples_count);
|
|
|
|
|
|
|
|
if (settings->video.threaded || (samples < 2))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Measure statistics on frame time (microsecs), *not* FPS. */
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
accum += video_state.frame_time_samples[i];
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
RARCH_LOG("Interval #%u: %d usec / frame.\n",
|
|
|
|
i, (int)video_state.frame_time_samples[i]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
avg = accum / samples;
|
|
|
|
|
|
|
|
/* Drop first measurement. It is likely to be bad. */
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
{
|
|
|
|
retro_time_t diff = video_state.frame_time_samples[i] - avg;
|
|
|
|
accum_var += diff * diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
*deviation = sqrt((double)accum_var / (samples - 1)) / avg;
|
|
|
|
*refresh_rate = 1000000.0 / avg;
|
|
|
|
*sample_points = samples;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TIME_TO_FPS
|
|
|
|
#define TIME_TO_FPS(last_time, new_time, frames) ((1000000.0f * (frames)) / ((new_time) - (last_time)))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define FPS_UPDATE_INTERVAL 256
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_monitor_get_fps:
|
|
|
|
* @buf : string suitable for Window title
|
|
|
|
* @size : size of buffer.
|
|
|
|
* @buf_fps : string of raw FPS only (optional).
|
|
|
|
* @size_fps : size of raw FPS buffer.
|
|
|
|
*
|
|
|
|
* Get the amount of frames per seconds.
|
|
|
|
*
|
|
|
|
* Returns: true if framerate per seconds could be obtained,
|
|
|
|
* otherwise false.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define U64_SIGN "%I64u"
|
|
|
|
#else
|
|
|
|
#define U64_SIGN "%llu"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool video_monitor_get_fps(char *buf, size_t size,
|
|
|
|
char *buf_fps, size_t size_fps)
|
|
|
|
{
|
|
|
|
retro_time_t new_time;
|
|
|
|
static retro_time_t curr_time;
|
|
|
|
static retro_time_t fps_time;
|
2015-06-25 12:30:32 +00:00
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
*buf = '\0';
|
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
new_time = retro_get_time_usec();
|
2015-05-20 03:35:41 +00:00
|
|
|
|
2015-08-03 21:01:07 +00:00
|
|
|
if (video_frame_count)
|
2015-05-20 03:35:41 +00:00
|
|
|
{
|
2015-09-28 16:12:02 +00:00
|
|
|
static float last_fps;
|
2015-05-20 03:35:41 +00:00
|
|
|
bool ret = false;
|
|
|
|
unsigned write_index = video_state.frame_time_samples_count++ &
|
|
|
|
(MEASURE_FRAME_TIME_SAMPLES_COUNT - 1);
|
|
|
|
|
|
|
|
video_state.frame_time_samples[write_index] = new_time - fps_time;
|
|
|
|
fps_time = new_time;
|
|
|
|
|
2015-08-03 21:01:07 +00:00
|
|
|
if ((video_frame_count % FPS_UPDATE_INTERVAL) == 0)
|
2015-05-20 03:35:41 +00:00
|
|
|
{
|
|
|
|
last_fps = TIME_TO_FPS(curr_time, new_time, FPS_UPDATE_INTERVAL);
|
|
|
|
curr_time = new_time;
|
|
|
|
|
|
|
|
snprintf(buf, size, "%s || FPS: %6.1f || Frames: " U64_SIGN,
|
2015-08-03 21:01:07 +00:00
|
|
|
system->title_buf, last_fps, (unsigned long long)video_frame_count);
|
2015-05-20 03:35:41 +00:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf_fps)
|
|
|
|
snprintf(buf_fps, size_fps, "FPS: %6.1f || Frames: " U64_SIGN,
|
2015-08-03 21:01:07 +00:00
|
|
|
last_fps, (unsigned long long)video_frame_count);
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_time = fps_time = new_time;
|
2015-06-25 12:30:32 +00:00
|
|
|
strlcpy(buf, system->title_buf, size);
|
2015-05-20 03:35:41 +00:00
|
|
|
if (buf_fps)
|
|
|
|
strlcpy(buf_fps, "N/A", size_fps);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-20 16:24:45 +00:00
|
|
|
float video_driver_get_aspect_ratio(void)
|
|
|
|
{
|
|
|
|
return video_state.aspect_ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_aspect_ratio_value(float value)
|
|
|
|
{
|
|
|
|
video_state.aspect_ratio = value;
|
|
|
|
}
|
2015-05-20 17:56:12 +00:00
|
|
|
|
|
|
|
struct retro_hw_render_callback *video_driver_callback(void)
|
|
|
|
{
|
|
|
|
return &video_state.hw_render_callback;
|
|
|
|
}
|
|
|
|
|
2015-05-20 18:49:52 +00:00
|
|
|
|
|
|
|
bool video_driver_frame_filter(const void *data,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
size_t pitch,
|
|
|
|
unsigned *output_width, unsigned *output_height,
|
|
|
|
unsigned *output_pitch)
|
|
|
|
{
|
2015-09-20 08:02:47 +00:00
|
|
|
static struct retro_perf_counter softfilter_process = {0};
|
2015-05-20 18:49:52 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
rarch_perf_init(&softfilter_process, "softfilter_process");
|
2015-05-20 18:49:52 +00:00
|
|
|
|
2015-11-20 19:49:49 +00:00
|
|
|
if (!video_state.filter.filter || !data)
|
2015-05-20 18:49:52 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
rarch_softfilter_get_output_size(video_state.filter.filter,
|
|
|
|
output_width, output_height, width, height);
|
|
|
|
|
|
|
|
*output_pitch = (*output_width) * video_state.filter.out_bpp;
|
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
retro_perf_start(&softfilter_process);
|
2015-05-20 18:49:52 +00:00
|
|
|
rarch_softfilter_process(video_state.filter.filter,
|
|
|
|
video_state.filter.buffer, *output_pitch,
|
|
|
|
data, width, height, pitch);
|
2015-09-20 08:02:47 +00:00
|
|
|
retro_perf_stop(&softfilter_process);
|
2015-05-20 18:49:52 +00:00
|
|
|
|
|
|
|
if (settings->video.post_filter_record)
|
|
|
|
recording_dump_frame(video_state.filter.buffer,
|
|
|
|
*output_width, *output_height, *output_pitch);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
rarch_softfilter_t *video_driver_frame_filter_get_ptr(void)
|
|
|
|
{
|
|
|
|
return video_state.filter.filter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *video_driver_frame_filter_get_buf_ptr(void)
|
|
|
|
{
|
|
|
|
return video_state.filter.buffer;
|
|
|
|
}
|
2015-05-20 18:59:12 +00:00
|
|
|
|
|
|
|
enum retro_pixel_format video_driver_get_pixel_format(void)
|
|
|
|
{
|
|
|
|
return video_state.pix_fmt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_pixel_format(enum retro_pixel_format fmt)
|
|
|
|
{
|
|
|
|
video_state.pix_fmt = fmt;
|
|
|
|
}
|
2015-11-20 14:08:27 +00:00
|
|
|
|
2015-11-20 14:34:10 +00:00
|
|
|
/**
|
|
|
|
* video_driver_cached_frame:
|
|
|
|
*
|
|
|
|
* Renders the current video frame.
|
|
|
|
**/
|
2015-11-20 17:36:38 +00:00
|
|
|
static bool video_driver_cached_frame(driver_t *driver)
|
2015-11-20 14:34:10 +00:00
|
|
|
{
|
|
|
|
bool is_idle;
|
|
|
|
void *recording = driver ? driver->recording_data : NULL;
|
|
|
|
|
|
|
|
rarch_main_ctl(RARCH_MAIN_CTL_IS_IDLE, &is_idle);
|
|
|
|
|
|
|
|
if (is_idle)
|
|
|
|
return true; /* Maybe return false here for indication of idleness? */
|
|
|
|
|
|
|
|
/* Cannot allow recording when pushing duped frames. */
|
|
|
|
driver->recording_data = NULL;
|
|
|
|
|
|
|
|
/* Not 100% safe, since the library might have
|
|
|
|
* freed the memory, but no known implementations do this.
|
|
|
|
* It would be really stupid at any rate ...
|
|
|
|
*/
|
|
|
|
if (driver->retro_ctx.frame_cb)
|
|
|
|
driver->retro_ctx.frame_cb(
|
|
|
|
(video_state.frame_cache.data == RETRO_HW_FRAME_BUFFER_VALID)
|
|
|
|
? NULL : video_state.frame_cache.data,
|
|
|
|
video_state.frame_cache.width,
|
|
|
|
video_state.frame_cache.height,
|
|
|
|
video_state.frame_cache.pitch);
|
|
|
|
|
|
|
|
driver->recording_data = recording;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-20 19:47:47 +00:00
|
|
|
static void video_monitor_adjust_system_rates(void)
|
|
|
|
{
|
|
|
|
float timing_skew;
|
|
|
|
const struct retro_system_timing *info = NULL;
|
|
|
|
struct retro_system_av_info *av_info =
|
|
|
|
video_viewport_get_system_av_info();
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
rarch_system_info_t *system = rarch_system_info_get_ptr();
|
|
|
|
|
|
|
|
if (!system)
|
|
|
|
return;
|
|
|
|
|
|
|
|
system->force_nonblock = false;
|
|
|
|
|
|
|
|
if (av_info)
|
|
|
|
info = (const struct retro_system_timing*)&av_info->timing;
|
|
|
|
|
|
|
|
if (!info || info->fps <= 0.0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
timing_skew = fabs(1.0f - info->fps / settings->video.refresh_rate);
|
|
|
|
|
|
|
|
/* We don't want to adjust pitch too much. If we have extreme cases,
|
|
|
|
* just don't readjust at all. */
|
|
|
|
if (timing_skew <= settings->audio.max_timing_skew)
|
|
|
|
return;
|
|
|
|
|
|
|
|
RARCH_LOG("Timings deviate too much. Will not adjust. (Display = %.2f Hz, Game = %.2f Hz)\n",
|
|
|
|
settings->video.refresh_rate,
|
|
|
|
(float)info->fps);
|
|
|
|
|
|
|
|
if (info->fps <= settings->video.refresh_rate)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* We won't be able to do VSync reliably when game FPS > monitor FPS. */
|
|
|
|
system->force_nonblock = true;
|
|
|
|
RARCH_LOG("Game FPS > Monitor FPS. Cannot rely on VSync.\n");
|
|
|
|
}
|
|
|
|
|
2015-11-21 10:22:34 +00:00
|
|
|
void video_driver_menu_settings(void *data, void *subgroup_data, const char *parent_group)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
rarch_setting_group_info_t *group_info = (rarch_setting_group_info_t*)data;
|
|
|
|
rarch_setting_group_info_t *subgroup_info = (rarch_setting_group_info_t*)subgroup_data;
|
2015-11-21 10:24:02 +00:00
|
|
|
(void)group_info;
|
|
|
|
(void)subgroup_info;
|
2015-11-21 10:22:34 +00:00
|
|
|
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
|
|
|
CONFIG_ACTION(
|
|
|
|
menu_hash_to_str(MENU_LABEL_SCREEN_RESOLUTION),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_SCREEN_RESOLUTION),
|
|
|
|
group_info->name,
|
|
|
|
subgroup_info->name,
|
|
|
|
parent_group);
|
|
|
|
#endif
|
|
|
|
#if defined(__CELLOS_LV2__)
|
|
|
|
CONFIG_BOOL(
|
|
|
|
&global->console.screen.pal60_enable,
|
|
|
|
menu_hash_to_str(MENU_LABEL_PAL60_ENABLE),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_PAL60_ENABLE),
|
|
|
|
false,
|
|
|
|
menu_hash_to_str(MENU_VALUE_OFF),
|
|
|
|
menu_hash_to_str(MENU_VALUE_ON),
|
|
|
|
group_info->name,
|
|
|
|
subgroup_info->name,
|
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
#endif
|
|
|
|
#if defined(HW_RVL) || defined(_XBOX360)
|
|
|
|
CONFIG_UINT(
|
|
|
|
global->console.screen.gamma_correction,
|
|
|
|
menu_hash_to_str(MENU_LABEL_VIDEO_GAMMA),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_GAMMA),
|
|
|
|
0,
|
|
|
|
group_info->name,
|
|
|
|
subgroup_info->name,
|
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
menu_settings_list_current_add_cmd(
|
|
|
|
list,
|
|
|
|
list_info,
|
|
|
|
EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
|
|
|
|
menu_settings_list_current_add_range(
|
|
|
|
list,
|
|
|
|
list_info,
|
|
|
|
0,
|
|
|
|
MAX_GAMMA_SETTING,
|
|
|
|
1,
|
|
|
|
true,
|
|
|
|
true);
|
|
|
|
settings_data_list_current_add_flags(list, list_info, SD_FLAG_CMD_APPLY_AUTO|SD_FLAG_ADVANCED);
|
|
|
|
#endif
|
|
|
|
#if defined(_XBOX1) || defined(HW_RVL)
|
|
|
|
CONFIG_BOOL(
|
|
|
|
&global->console.softfilter_enable,
|
|
|
|
menu_hash_to_str(MENU_LABEL_VIDEO_SOFT_FILTER),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_SOFT_FILTER),
|
|
|
|
false,
|
|
|
|
menu_hash_to_str(MENU_VALUE_OFF),
|
|
|
|
menu_hash_to_str(MENU_VALUE_ON),
|
|
|
|
group_info->name,
|
|
|
|
subgroup_info->name,
|
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
menu_settings_list_current_add_cmd(
|
|
|
|
list,
|
|
|
|
list_info,
|
|
|
|
EVENT_CMD_VIDEO_APPLY_STATE_CHANGES);
|
|
|
|
#endif
|
|
|
|
#ifdef _XBOX1
|
|
|
|
CONFIG_UINT(
|
|
|
|
settings->video.swap_interval,
|
|
|
|
menu_hash_to_str(MENU_LABEL_VIDEO_FILTER_FLICKER),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_FILTER_FLICKER),
|
|
|
|
0,
|
|
|
|
group_info.name,
|
|
|
|
subgroup_info.name,
|
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
menu_settings_list_current_add_range(list, list_info, 0, 5, 1, true, true);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-11-20 14:08:27 +00:00
|
|
|
bool video_driver_ctl(enum rarch_display_ctl_state state, void *data)
|
|
|
|
{
|
2015-11-20 17:38:08 +00:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
const video_driver_t *video = video_driver_ctx_get_ptr(driver);
|
|
|
|
const video_poke_interface_t *poke = video_driver_get_poke_ptr(driver);
|
2015-11-20 17:45:00 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-11-20 14:24:24 +00:00
|
|
|
|
2015-11-20 14:08:27 +00:00
|
|
|
switch (state)
|
|
|
|
{
|
2015-11-20 20:20:12 +00:00
|
|
|
case RARCH_DISPLAY_CTL_GET_NEXT_VIDEO_OUT:
|
2015-11-21 06:54:42 +00:00
|
|
|
if (poke && poke->get_video_output_next)
|
|
|
|
{
|
2015-11-20 20:20:12 +00:00
|
|
|
poke->get_video_output_next(driver->video_data);
|
2015-11-21 06:54:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-11-21 07:39:46 +00:00
|
|
|
return gfx_ctx_get_video_output_next(driver->video_context_data);
|
2015-11-20 20:20:12 +00:00
|
|
|
case RARCH_DISPLAY_CTL_GET_PREV_VIDEO_OUT:
|
2015-11-21 06:54:42 +00:00
|
|
|
if (poke && poke->get_video_output_prev)
|
|
|
|
{
|
2015-11-20 20:20:12 +00:00
|
|
|
poke->get_video_output_prev(driver->video_data);
|
2015-11-21 06:54:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-11-21 07:39:46 +00:00
|
|
|
return gfx_ctx_get_video_output_next(driver->video_context_data);
|
2015-11-20 18:01:13 +00:00
|
|
|
case RARCH_DISPLAY_CTL_INIT:
|
|
|
|
return init_video();
|
|
|
|
case RARCH_DISPLAY_CTL_DEINIT:
|
|
|
|
return uninit_video_input();
|
2015-11-20 18:04:00 +00:00
|
|
|
case RARCH_DISPLAY_CTL_MONITOR_RESET:
|
|
|
|
video_state.frame_time_samples_count = 0;
|
|
|
|
return true;
|
2015-11-20 19:47:47 +00:00
|
|
|
case RARCH_DISPLAY_CTL_MONITOR_ADJUST_SYSTEM_RATES:
|
|
|
|
video_monitor_adjust_system_rates();
|
|
|
|
return true;
|
2015-11-20 17:45:00 +00:00
|
|
|
case RARCH_DISPLAY_CTL_SET_ASPECT_RATIO:
|
|
|
|
if (!poke || !poke->set_aspect_ratio)
|
|
|
|
return false;
|
|
|
|
poke->set_aspect_ratio(driver->video_data, settings->video.aspect_ratio_idx);
|
|
|
|
return true;
|
2015-11-20 16:26:39 +00:00
|
|
|
case RARCH_DISPLAY_CTL_SHOW_MOUSE:
|
|
|
|
{
|
|
|
|
bool *toggle = (bool*)data;
|
|
|
|
|
|
|
|
if (poke && poke->show_mouse)
|
|
|
|
poke->show_mouse(driver->video_data, *toggle);
|
|
|
|
}
|
|
|
|
return true;
|
2015-11-20 16:22:19 +00:00
|
|
|
case RARCH_DISPLAY_CTL_SET_NONBLOCK_STATE:
|
|
|
|
{
|
|
|
|
bool *toggle = (bool*)data;
|
|
|
|
|
|
|
|
if (!toggle || !video || !driver)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (video && video->set_nonblock_state)
|
|
|
|
video->set_nonblock_state(driver->video_data, *toggle);
|
|
|
|
}
|
|
|
|
return true;
|
2015-11-20 14:58:48 +00:00
|
|
|
case RARCH_DISPLAY_CTL_FIND_DRIVER:
|
|
|
|
return find_video_driver();
|
2015-11-20 14:55:09 +00:00
|
|
|
case RARCH_DISPLAY_CTL_APPLY_STATE_CHANGES:
|
2015-11-20 17:38:08 +00:00
|
|
|
if (poke && poke->apply_state_changes)
|
|
|
|
poke->apply_state_changes(driver->video_data);
|
2015-11-20 14:55:09 +00:00
|
|
|
return true;
|
2015-11-20 14:41:20 +00:00
|
|
|
case RARCH_DISPLAY_CTL_READ_VIEWPORT:
|
2015-11-20 17:36:38 +00:00
|
|
|
if (video && video->read_viewport)
|
|
|
|
return video->read_viewport(driver->video_data,
|
|
|
|
(uint8_t*)data);
|
|
|
|
return false;
|
2015-11-20 14:38:10 +00:00
|
|
|
case RARCH_DISPLAY_CTL_CACHED_FRAME_HAS_VALID_FB:
|
|
|
|
if (!video_state.frame_cache.data)
|
|
|
|
return false;
|
|
|
|
return (video_state.frame_cache.data == RETRO_HW_FRAME_BUFFER_VALID);
|
2015-11-20 14:34:10 +00:00
|
|
|
case RARCH_DISPLAY_CTL_CACHED_FRAME_RENDER:
|
2015-11-20 17:36:38 +00:00
|
|
|
return video_driver_cached_frame(driver);
|
2015-11-20 14:24:24 +00:00
|
|
|
case RARCH_DISPLAY_CTL_IS_FOCUSED:
|
2015-11-20 17:36:38 +00:00
|
|
|
return video->focus(driver->video_data);
|
2015-11-20 14:20:54 +00:00
|
|
|
case RARCH_DISPLAY_CTL_HAS_WINDOWED:
|
2015-11-20 17:36:38 +00:00
|
|
|
return video->has_windowed(driver->video_data);
|
2015-11-20 14:08:27 +00:00
|
|
|
case RARCH_DISPLAY_CTL_GET_FRAME_COUNT:
|
|
|
|
{
|
|
|
|
uint64_t **ptr = (uint64_t**)data;
|
|
|
|
if (!ptr)
|
|
|
|
return false;
|
|
|
|
*ptr = &video_frame_count;
|
|
|
|
}
|
2015-11-20 20:20:12 +00:00
|
|
|
return true;
|
2015-11-20 14:14:12 +00:00
|
|
|
case RARCH_DISPLAY_CTL_FRAME_FILTER_ALIVE:
|
|
|
|
if (video_state.filter.filter)
|
|
|
|
return true;
|
|
|
|
return false;
|
2015-11-20 14:16:58 +00:00
|
|
|
case RARCH_DISPLAY_CTL_FRAME_FILTER_IS_32BIT:
|
|
|
|
return video_state.filter.out_rgb32;
|
2015-11-21 08:54:55 +00:00
|
|
|
case RARCH_DISPLAY_CTL_DEFAULT_SETTINGS:
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
|
|
|
|
if (!global)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
global->console.screen.gamma_correction = DEFAULT_GAMMA;
|
|
|
|
global->console.flickerfilter_enable = false;
|
|
|
|
global->console.softfilter_enable = false;
|
|
|
|
|
|
|
|
global->console.screen.resolutions.current.id = 0;
|
|
|
|
}
|
|
|
|
return true;
|
2015-11-21 08:32:51 +00:00
|
|
|
case RARCH_DISPLAY_CTL_LOAD_SETTINGS:
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
config_file_t *conf = (config_file_t*)data;
|
|
|
|
|
|
|
|
if (!conf)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
CONFIG_GET_BOOL_BASE(conf, global, console.screen.gamma_correction, "gamma_correction");
|
|
|
|
config_get_bool(conf, "flicker_filter_enable",
|
|
|
|
&global->console.flickerfilter_enable);
|
|
|
|
config_get_bool(conf, "soft_filter_enable",
|
|
|
|
&global->console.softfilter_enable);
|
|
|
|
|
|
|
|
CONFIG_GET_INT_BASE(conf, global, console.screen.resolutions.width,
|
|
|
|
"console_resolution_width");
|
|
|
|
CONFIG_GET_INT_BASE(conf, global, console.screen.resolutions.height,
|
|
|
|
"console_resolution_height");
|
|
|
|
CONFIG_GET_INT_BASE(conf, global, console.screen.soft_filter_index,
|
|
|
|
"soft_filter_index");
|
|
|
|
CONFIG_GET_INT_BASE(conf, global, console.screen.resolutions.current.id,
|
|
|
|
"current_resolution_id");
|
|
|
|
CONFIG_GET_INT_BASE(conf, global, console.screen.flicker_filter_index,
|
|
|
|
"flicker_filter_index");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
case RARCH_DISPLAY_CTL_SAVE_SETTINGS:
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
config_file_t *conf = (config_file_t*)data;
|
|
|
|
|
|
|
|
if (!conf)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
config_set_bool(conf, "gamma_correction",
|
|
|
|
global->console.screen.gamma_correction);
|
|
|
|
config_set_bool(conf, "flicker_filter_enable",
|
|
|
|
global->console.flickerfilter_enable);
|
|
|
|
config_set_bool(conf, "soft_filter_enable",
|
|
|
|
global->console.softfilter_enable);
|
|
|
|
|
|
|
|
config_set_int(conf, "console_resolution_width",
|
|
|
|
global->console.screen.resolutions.width);
|
|
|
|
config_set_int(conf, "console_resolution_height",
|
|
|
|
global->console.screen.resolutions.height);
|
|
|
|
config_set_int(conf, "soft_filter_index",
|
|
|
|
global->console.screen.soft_filter_index);
|
|
|
|
config_set_int(conf, "current_resolution_id",
|
|
|
|
global->console.screen.resolutions.current.id);
|
|
|
|
config_set_int(conf, "flicker_filter_index",
|
|
|
|
global->console.screen.flicker_filter_index);
|
|
|
|
}
|
|
|
|
return true;
|
2015-11-20 14:08:27 +00:00
|
|
|
case RARCH_DISPLAY_CTL_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|