2015-01-12 17:26:46 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2016-01-10 03:41:52 +00:00
|
|
|
* Copyright (C) 2011-2016 - 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-11-23 12:02:07 +00:00
|
|
|
#include <stddef.h>
|
2015-01-12 17:26:46 +00:00
|
|
|
#include <string.h>
|
2015-09-05 18:03:27 +00:00
|
|
|
|
2016-03-24 02:06:03 +00:00
|
|
|
#include <retro_assert.h>
|
2015-11-23 12:02:07 +00:00
|
|
|
#include <gfx/scaler/pixconv.h>
|
2015-12-05 20:23:34 +00:00
|
|
|
#include <gfx/scaler/scaler.h>
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
#include <rthreads/rthreads.h>
|
|
|
|
#endif
|
2015-11-23 12:02:07 +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-12-05 08:09:31 +00:00
|
|
|
#include "../frontend/frontend_driver.h"
|
2015-11-21 06:54:42 +00:00
|
|
|
#include "video_context_driver.h"
|
2015-12-05 15:12:29 +00:00
|
|
|
#include "../record/record_driver.h"
|
2015-11-21 08:54:55 +00:00
|
|
|
#include "../config.def.h"
|
2016-03-22 01:45:25 +00:00
|
|
|
#include "../retroarch.h"
|
|
|
|
#include "../runloop.h"
|
2015-05-20 03:35:41 +00:00
|
|
|
#include "../performance.h"
|
2016-03-20 16:28:24 +00:00
|
|
|
#include "../list_special.h"
|
2016-05-08 03:29:10 +00:00
|
|
|
#include "../core.h"
|
2015-12-06 18:31:47 +00:00
|
|
|
#include "../system.h"
|
2016-01-02 01:54:20 +00:00
|
|
|
#include "../command_event.h"
|
2016-03-04 18:38:15 +00:00
|
|
|
#include "../msg_hash.h"
|
2015-01-12 17:26:46 +00:00
|
|
|
|
2015-11-21 10:22:34 +00:00
|
|
|
#ifdef HAVE_MENU
|
2015-11-21 15:32:22 +00:00
|
|
|
#include "../menu/menu_hash.h"
|
2015-11-21 10:22:34 +00:00
|
|
|
#include "../menu/menu_setting.h"
|
|
|
|
#endif
|
|
|
|
|
2015-11-23 11:03:38 +00:00
|
|
|
#include "../verbosity.h"
|
|
|
|
|
2015-05-20 03:35:41 +00:00
|
|
|
#define MEASURE_FRAME_TIME_SAMPLES_COUNT (2 * 1024)
|
|
|
|
|
2016-02-07 23:28:05 +00:00
|
|
|
#define TIME_TO_FPS(last_time, new_time, frames) ((1000000.0f * (frames)) / ((new_time) - (last_time)))
|
|
|
|
|
|
|
|
#define FPS_UPDATE_INTERVAL 256
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define U64_SIGN "%I64u"
|
|
|
|
#else
|
|
|
|
#define U64_SIGN "%llu"
|
|
|
|
#endif
|
|
|
|
|
2015-05-20 03:35:41 +00:00
|
|
|
typedef struct video_driver_state
|
|
|
|
{
|
2016-03-04 19:14:39 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
retro_time_t samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
|
|
|
|
uint64_t count;
|
|
|
|
} frame_time;
|
|
|
|
|
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;
|
|
|
|
|
2015-11-29 00:48:25 +00:00
|
|
|
typedef struct video_pixel_scaler
|
|
|
|
{
|
|
|
|
struct scaler_ctx *scaler;
|
|
|
|
void *scaler_out;
|
|
|
|
} video_pixel_scaler_t;
|
|
|
|
|
2015-11-29 00:12:49 +00:00
|
|
|
/* Opaque handles to currently running window.
|
|
|
|
* Used by e.g. input drivers which bind to a window.
|
|
|
|
* Drivers are responsible for setting these if an input driver
|
|
|
|
* could potentially make use of this. */
|
2015-11-30 06:14:23 +00:00
|
|
|
static uintptr_t video_driver_display;
|
|
|
|
static uintptr_t video_driver_window;
|
|
|
|
static enum rarch_display_type video_driver_display_type;
|
2016-03-04 18:38:15 +00:00
|
|
|
static char video_driver_title_buf[64];
|
2015-11-29 00:12:49 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
static uint64_t video_driver_frame_count;
|
2015-11-24 00:54:21 +00:00
|
|
|
|
2016-02-14 04:26:17 +00:00
|
|
|
static void *video_driver_data = NULL;
|
2016-02-04 19:03:31 +00:00
|
|
|
static video_driver_t *current_video = NULL;
|
2015-11-23 17:11:17 +00:00
|
|
|
|
2015-11-23 21:14:39 +00:00
|
|
|
/* Interface for "poking". */
|
2016-02-04 19:03:31 +00:00
|
|
|
static const video_poke_interface_t *video_driver_poke = NULL;
|
2015-11-23 21:14:39 +00:00
|
|
|
|
2016-02-04 19:05:20 +00:00
|
|
|
static video_driver_state_t video_driver_state;
|
2015-05-20 00:55:04 +00:00
|
|
|
|
2015-11-23 12:02:07 +00:00
|
|
|
/* Used for 16-bit -> 16-bit conversions that take place before
|
|
|
|
* being passed to video driver. */
|
2016-02-04 19:03:31 +00:00
|
|
|
static video_pixel_scaler_t *video_driver_scaler_ptr = NULL;
|
2015-11-23 12:02:07 +00:00
|
|
|
|
2015-11-21 11:45:36 +00:00
|
|
|
char rotation_lut[4][32] =
|
|
|
|
{
|
|
|
|
"Normal",
|
|
|
|
"90 deg",
|
|
|
|
"180 deg",
|
|
|
|
"270 deg"
|
|
|
|
};
|
|
|
|
|
|
|
|
struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = {
|
|
|
|
{ "4:3", 1.3333f },
|
|
|
|
{ "16:9", 1.7778f },
|
|
|
|
{ "16:10", 1.6f },
|
|
|
|
{ "16:15", 16.0f / 15.0f },
|
|
|
|
{ "1:1", 1.0f },
|
|
|
|
{ "2:1", 2.0f },
|
|
|
|
{ "3:2", 1.5f },
|
|
|
|
{ "3:4", 0.75f },
|
|
|
|
{ "4:1", 4.0f },
|
|
|
|
{ "4:4", 1.0f },
|
|
|
|
{ "5:4", 1.25f },
|
|
|
|
{ "6:5", 1.2f },
|
|
|
|
{ "7:9", 0.7777f },
|
|
|
|
{ "8:3", 2.6666f },
|
|
|
|
{ "8:7", 1.1428f },
|
|
|
|
{ "19:12", 1.5833f },
|
|
|
|
{ "19:14", 1.3571f },
|
|
|
|
{ "30:17", 1.7647f },
|
|
|
|
{ "32:9", 3.5555f },
|
|
|
|
{ "Config", 0.0f },
|
|
|
|
{ "Square pixel", 1.0f },
|
|
|
|
{ "Core provided", 1.0f },
|
|
|
|
{ "Custom", 0.0f }
|
|
|
|
};
|
|
|
|
|
2015-01-12 17:26:46 +00:00
|
|
|
static const video_driver_t *video_drivers[] = {
|
2016-02-16 19:24:00 +00:00
|
|
|
#ifdef HAVE_VULKAN
|
|
|
|
&video_vulkan,
|
|
|
|
#endif
|
2015-01-12 17:26:46 +00:00
|
|
|
#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-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
|
|
|
}
|
|
|
|
|
2016-02-16 19:24:00 +00:00
|
|
|
static bool hw_render_context_is_vulkan(enum retro_hw_context_type type)
|
|
|
|
{
|
|
|
|
return type == RETRO_HW_CONTEXT_VULKAN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool hw_render_context_is_gl(enum retro_hw_context_type type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case RETRO_HW_CONTEXT_OPENGL:
|
|
|
|
case RETRO_HW_CONTEXT_OPENGLES2:
|
|
|
|
case RETRO_HW_CONTEXT_OPENGL_CORE:
|
|
|
|
case RETRO_HW_CONTEXT_OPENGLES3:
|
|
|
|
case RETRO_HW_CONTEXT_OPENGLES_VERSION:
|
|
|
|
return true;
|
|
|
|
default:
|
2016-02-20 05:16:34 +00:00
|
|
|
break;
|
2016-02-16 19:24:00 +00:00
|
|
|
}
|
2016-02-20 05:16:34 +00:00
|
|
|
|
|
|
|
return false;
|
2016-02-16 19:24:00 +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-23 15:06:09 +00:00
|
|
|
void *video_driver_get_ptr(bool force_nonthreaded_data)
|
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
|
2016-05-08 12:00:51 +00:00
|
|
|
&& !video_driver_is_hw_context()
|
2016-02-07 19:11:16 +00:00
|
|
|
&& !force_nonthreaded_data)
|
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-11-30 06:14:23 +00:00
|
|
|
return video_driver_data;
|
2015-01-12 19:20:58 +00:00
|
|
|
}
|
2015-01-19 03:19:30 +00:00
|
|
|
|
2015-04-26 14:46:56 +00:00
|
|
|
const char *video_driver_get_ident(void)
|
|
|
|
{
|
2015-11-23 17:11:17 +00:00
|
|
|
return (current_video) ? current_video->ident : NULL;
|
2015-04-26 14:46:56 +00:00
|
|
|
}
|
|
|
|
|
2015-11-23 21:14:39 +00:00
|
|
|
const video_poke_interface_t *video_driver_get_poke(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_poke;
|
2015-11-23 21:14:39 +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)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!video_driver_poke || !video_driver_poke->get_current_framebuffer)
|
|
|
|
return 0;
|
|
|
|
return video_driver_poke->get_current_framebuffer(video_driver_data);
|
2015-01-19 03:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
retro_proc_address_t video_driver_get_proc_address(const char *sym)
|
|
|
|
{
|
2016-02-11 00:40:43 +00:00
|
|
|
if (!video_driver_poke || !video_driver_poke->get_proc_address)
|
|
|
|
return NULL;
|
|
|
|
return video_driver_poke->get_proc_address(video_driver_data, sym);
|
2015-01-19 03:19:30 +00:00
|
|
|
}
|
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
|
|
|
{
|
2016-02-11 00:40:43 +00:00
|
|
|
if (!current_video->set_shader)
|
|
|
|
return false;
|
|
|
|
return current_video->set_shader(video_driver_data, type, path);
|
2015-02-10 16:20:02 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
static void deinit_video_filter(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
rarch_softfilter_free(video_driver_state.filter.filter);
|
2015-11-12 13:57:26 +00:00
|
|
|
#ifdef _3DS
|
2015-11-30 06:14:23 +00:00
|
|
|
linearFree(video_driver_state.filter.buffer);
|
2015-11-12 13:57:26 +00:00
|
|
|
#else
|
2015-11-30 06:14:23 +00:00
|
|
|
free(video_driver_state.filter.buffer);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2016-02-06 20:51:37 +00:00
|
|
|
memset(&video_driver_state.filter, 0,
|
|
|
|
sizeof(video_driver_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();
|
|
|
|
|
2016-04-28 18:49:13 +00:00
|
|
|
if (!*settings->path.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;
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (video_driver_is_hw_context())
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_WARN("Cannot use CPU filters when hardware rendering is used.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-14 04:26:17 +00:00
|
|
|
if (av_info)
|
|
|
|
geom = (struct retro_game_geometry*)&av_info->geometry;
|
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-11-30 06:14:23 +00:00
|
|
|
video_driver_state.filter.filter = rarch_softfilter_new(
|
2016-04-28 18:49:13 +00:00
|
|
|
settings->path.softfilter_plugin,
|
2015-01-26 19:30:48 +00:00
|
|
|
RARCH_SOFTFILTER_THREADS_AUTO, colfmt, width, height);
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_state.filter.filter)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to load filter.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
rarch_softfilter_get_max_output_size(video_driver_state.filter.filter,
|
2015-01-26 19:30:48 +00:00
|
|
|
&width, &height);
|
|
|
|
|
2016-02-14 04:26:17 +00:00
|
|
|
pow2_x = next_pow2(width);
|
|
|
|
pow2_y = next_pow2(height);
|
2016-03-01 23:07:31 +00:00
|
|
|
maxsize = MAX(pow2_x, pow2_y);
|
2016-02-14 04:26:17 +00:00
|
|
|
video_driver_state.filter.scale = maxsize / RARCH_SCALE_BASE;
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.filter.out_rgb32 = rarch_softfilter_get_output_format(
|
|
|
|
video_driver_state.filter.filter) == RETRO_PIXEL_FORMAT_XRGB8888;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-02-14 04:26:17 +00:00
|
|
|
video_driver_state.filter.out_bpp =
|
|
|
|
video_driver_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
|
2016-02-14 04:26:17 +00:00
|
|
|
video_driver_state.filter.buffer = linearMemAlign(width
|
2016-02-06 20:51:37 +00:00
|
|
|
* height * video_driver_state.filter.out_bpp, 0x80);
|
2015-11-12 13:57:26 +00:00
|
|
|
#else
|
2016-02-14 04:26:17 +00:00
|
|
|
video_driver_state.filter.buffer = malloc(width
|
2016-02-06 20:51:37 +00:00
|
|
|
* height * video_driver_state.filter.out_bpp);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_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-11-29 18:07:02 +00:00
|
|
|
const input_driver_t **input = input_get_double_ptr();
|
|
|
|
if (*input)
|
2015-11-29 17:30:22 +00:00
|
|
|
return;
|
2015-03-18 18:40:00 +00:00
|
|
|
|
2015-08-03 21:01:07 +00:00
|
|
|
/* Reset video frame count */
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_frame_count = 0;
|
2015-08-03 21:01:07 +00:00
|
|
|
|
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-11-29 18:07:02 +00:00
|
|
|
*input = tmp;
|
2015-01-26 19:30:48 +00:00
|
|
|
else
|
2015-11-25 17:33:18 +00:00
|
|
|
input_driver_ctl(RARCH_INPUT_CTL_FIND_DRIVER, NULL);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
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-11-29 18:02:27 +00:00
|
|
|
if (!input_get_ptr())
|
2015-11-20 20:07:15 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-25 17:21:21 +00:00
|
|
|
if (input_driver_ctl(RARCH_INPUT_CTL_INIT, NULL))
|
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 20:05:27 +00:00
|
|
|
/**
|
|
|
|
* video_monitor_compute_fps_statistics:
|
|
|
|
*
|
|
|
|
* Computes monitor FPS statistics.
|
|
|
|
**/
|
|
|
|
static void video_monitor_compute_fps_statistics(void)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
double avg_fps = 0.0;
|
|
|
|
double stddev = 0.0;
|
|
|
|
unsigned samples = 0;
|
2015-11-20 20:05:27 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
|
|
|
if (settings->video.threaded)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Monitor FPS estimation is disabled for threaded video.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-04 19:14:39 +00:00
|
|
|
if (video_driver_state.frame_time.count <
|
2016-02-06 20:51:37 +00:00
|
|
|
(2 * MEASURE_FRAME_TIME_SAMPLES_COUNT))
|
2015-11-20 20:05:27 +00:00
|
|
|
{
|
|
|
|
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-23 12:05:50 +00:00
|
|
|
static void deinit_pixel_converter(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_scaler_ptr)
|
2015-11-23 12:05:50 +00:00
|
|
|
return;
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
scaler_ctx_gen_reset(video_driver_scaler_ptr->scaler);
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (video_driver_scaler_ptr->scaler)
|
|
|
|
free(video_driver_scaler_ptr->scaler);
|
|
|
|
video_driver_scaler_ptr->scaler = NULL;
|
2015-11-23 18:46:46 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (video_driver_scaler_ptr->scaler_out)
|
|
|
|
free(video_driver_scaler_ptr->scaler_out);
|
|
|
|
video_driver_scaler_ptr->scaler_out = NULL;
|
2015-11-23 18:46:46 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (video_driver_scaler_ptr)
|
|
|
|
free(video_driver_scaler_ptr);
|
|
|
|
video_driver_scaler_ptr = NULL;
|
2015-11-23 12:05:50 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 18:01:13 +00:00
|
|
|
static bool uninit_video_input(void)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2016-01-22 14:34:43 +00:00
|
|
|
event_cmd_ctl(EVENT_CMD_OVERLAY_DEINIT, NULL);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!video_driver_is_video_cache_context())
|
|
|
|
video_driver_deinit_hw_context();
|
2015-12-28 20:34:57 +00:00
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
if (
|
2015-11-29 19:34:35 +00:00
|
|
|
!input_driver_ctl(RARCH_INPUT_CTL_OWNS_DRIVER, NULL) &&
|
2016-02-13 06:40:02 +00:00
|
|
|
!input_driver_ctl(RARCH_INPUT_CTL_IS_DATA_PTR_SAME, video_driver_data)
|
2015-03-23 06:15:41 +00:00
|
|
|
)
|
2015-11-25 17:21:21 +00:00
|
|
|
input_driver_ctl(RARCH_INPUT_CTL_DEINIT, NULL);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (
|
2016-05-08 12:00:51 +00:00
|
|
|
!video_driver_owns_driver()
|
2015-12-04 01:29:49 +00:00
|
|
|
&& video_driver_data
|
2016-02-04 19:17:26 +00:00
|
|
|
&& current_video && current_video->free
|
2015-12-04 01:29:49 +00:00
|
|
|
)
|
2015-11-30 06:14:23 +00:00
|
|
|
current_video->free(video_driver_data);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
deinit_pixel_converter();
|
|
|
|
deinit_video_filter();
|
|
|
|
|
2016-01-22 14:34:43 +00:00
|
|
|
event_cmd_ctl(EVENT_CMD_SHADER_DIR_DEINIT, NULL);
|
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-23 12:05:50 +00:00
|
|
|
static bool init_video_pixel_converter(unsigned size)
|
|
|
|
{
|
2016-05-08 12:00:51 +00:00
|
|
|
struct retro_hw_render_callback *hwr =
|
|
|
|
video_driver_get_hw_context();
|
2016-02-16 19:24:00 +00:00
|
|
|
|
2015-11-23 12:05:50 +00:00
|
|
|
/* If pixel format is not 0RGB1555, we don't need to do
|
|
|
|
* any internal pixel conversion. */
|
|
|
|
if (video_driver_get_pixel_format() != RETRO_PIXEL_FORMAT_0RGB1555)
|
|
|
|
return true;
|
|
|
|
|
2016-02-16 19:24:00 +00:00
|
|
|
/* No need to perform pixel conversion for HW rendering contexts. */
|
|
|
|
if (hwr && hwr->context_type != RETRO_HW_CONTEXT_NONE)
|
|
|
|
return true;
|
|
|
|
|
2015-11-23 12:05:50 +00:00
|
|
|
RARCH_WARN("0RGB1555 pixel format is deprecated, and will be slower. For 15/16-bit, RGB565 format is preferred.\n");
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_scaler_ptr = (video_pixel_scaler_t*)
|
|
|
|
calloc(1, sizeof(*video_driver_scaler_ptr));
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_scaler_ptr)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_scaler_ptr->scaler = (struct scaler_ctx*)
|
|
|
|
calloc(1, sizeof(*video_driver_scaler_ptr->scaler));
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_scaler_ptr->scaler)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_scaler_ptr->scaler->scaler_type = SCALER_TYPE_POINT;
|
|
|
|
video_driver_scaler_ptr->scaler->in_fmt = SCALER_FMT_0RGB1555;
|
2015-11-23 12:05:50 +00:00
|
|
|
|
|
|
|
/* TODO: Pick either ARGB8888 or RGB565 depending on driver. */
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_scaler_ptr->scaler->out_fmt = SCALER_FMT_RGB565;
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!scaler_ctx_gen_filter(video_driver_scaler_ptr->scaler))
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_scaler_ptr->scaler_out =
|
|
|
|
calloc(sizeof(uint16_t), size * size);
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_scaler_ptr->scaler_out)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
2016-02-07 23:23:03 +00:00
|
|
|
deinit_pixel_converter();
|
2016-03-04 18:12:54 +00:00
|
|
|
deinit_video_filter();
|
2015-11-23 12:05:50 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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-12-10 21:30:25 +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-12-10 21:30:25 +00:00
|
|
|
rarch_system_info_t *system = NULL;
|
|
|
|
video_info_t video = {0};
|
|
|
|
static uint16_t dummy_pixels[32] = {0};
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
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-12-10 21:30:25 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &system);
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
init_video_filter(video_driver_state.pix_fmt);
|
2016-01-22 14:34:43 +00:00
|
|
|
event_cmd_ctl(EVENT_CMD_SHADER_DIR_INIT, NULL);
|
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
|
|
|
}
|
|
|
|
|
2016-03-01 23:07:31 +00:00
|
|
|
max_dim = MAX(geom->max_width, geom->max_height);
|
2015-03-22 06:32:06 +00:00
|
|
|
scale = next_pow2(max_dim) / RARCH_SCALE_BASE;
|
2016-03-01 23:07:31 +00:00
|
|
|
scale = MAX(scale, 1);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (video_driver_state.filter.filter)
|
|
|
|
scale = video_driver_state.filter.scale;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
/* Update core-dependent aspect ratio values. */
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_set_viewport_square_pixel();
|
|
|
|
video_driver_set_viewport_core();
|
|
|
|
video_driver_set_viewport_config();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
/* 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-11-29 00:12:49 +00:00
|
|
|
video_driver_display_type_set(RARCH_DISPLAY_NONE);
|
|
|
|
video_driver_display_set(0);
|
|
|
|
video_driver_window_set(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;
|
2016-03-04 18:20:00 +00:00
|
|
|
video.vsync = settings->video.vsync && !runloop_ctl(RUNLOOP_CTL_IS_NONBLOCK_FORCED, NULL);
|
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-11-30 06:14:23 +00:00
|
|
|
video.rgb32 = video_driver_state.filter.filter ?
|
|
|
|
video_driver_state.filter.out_rgb32 :
|
|
|
|
(video_driver_state.pix_fmt == RETRO_PIXEL_FORMAT_XRGB8888);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-29 18:03:23 +00:00
|
|
|
tmp = input_get_ptr();
|
2015-01-26 19:30:48 +00:00
|
|
|
/* Need to grab the "real" video driver interface on a reinit. */
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_find_driver();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
2016-02-06 20:51:37 +00:00
|
|
|
if (settings->video.threaded
|
2016-05-08 12:00:51 +00:00
|
|
|
&& !video_driver_is_hw_context())
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
/* Can't do hardware rendering with threaded driver currently. */
|
|
|
|
RARCH_LOG("Starting threaded video driver ...\n");
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
if (!rarch_threaded_video_init((const video_driver_t**)¤t_video,
|
|
|
|
&video_driver_data,
|
2015-11-29 18:07:02 +00:00
|
|
|
input_get_double_ptr(), input_driver_get_data_ptr(),
|
2015-11-23 17:11:17 +00:00
|
|
|
current_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-11-30 06:14:23 +00:00
|
|
|
video_driver_data = current_video->init(&video, input_get_double_ptr(),
|
2015-11-28 17:22:05 +00:00
|
|
|
input_driver_get_data_ptr());
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (!video_driver_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-11-30 06:14:23 +00:00
|
|
|
video_driver_poke = NULL;
|
2015-11-23 17:11:17 +00:00
|
|
|
if (current_video->poke_interface)
|
2015-11-30 06:14:23 +00:00
|
|
|
current_video->poke_interface(video_driver_data, &video_driver_poke);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-23 17:11:17 +00:00
|
|
|
if (current_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;
|
2016-02-14 04:42:27 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_get_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
|
|
|
|
2016-02-07 23:36:32 +00:00
|
|
|
current_video->suppress_screensaver(video_driver_data,
|
|
|
|
settings->ui.suspend_screensaver_enable);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2015-11-29 17:30:22 +00:00
|
|
|
init_video_input(tmp);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-01-22 14:34:43 +00:00
|
|
|
event_cmd_ctl(EVENT_CMD_OVERLAY_DEINIT, NULL);
|
|
|
|
event_cmd_ctl(EVENT_CMD_OVERLAY_INIT, NULL);
|
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-26 17:46:59 +00:00
|
|
|
bool video_driver_set_viewport(unsigned width, unsigned height,
|
|
|
|
bool force_fullscreen, bool allow_rotate)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!current_video || !current_video->set_viewport)
|
|
|
|
return false;
|
|
|
|
current_video->set_viewport(video_driver_data, width, height,
|
|
|
|
force_fullscreen, allow_rotate);
|
|
|
|
return true;
|
2015-04-26 17:46:59 +00:00
|
|
|
}
|
|
|
|
|
2015-03-22 09:38:26 +00:00
|
|
|
bool video_driver_set_rotation(unsigned rotation)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!current_video || !current_video->set_rotation)
|
|
|
|
return false;
|
|
|
|
current_video->set_rotation(video_driver_data, rotation);
|
|
|
|
return true;
|
2015-03-22 09:38:26 +00:00
|
|
|
}
|
2015-03-22 17:38:11 +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)
|
|
|
|
{
|
2016-02-14 01:12:18 +00:00
|
|
|
gfx_ctx_mode_t mode;
|
|
|
|
|
2015-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_video_mode)
|
2015-11-21 07:39:46 +00:00
|
|
|
{
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_poke->set_video_mode(video_driver_data,
|
|
|
|
width, height, fullscreen);
|
2015-11-21 07:39:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-14 01:12:18 +00:00
|
|
|
mode.width = width;
|
|
|
|
mode.height = height;
|
|
|
|
mode.fullscreen = fullscreen;
|
|
|
|
|
|
|
|
return gfx_ctx_ctl(GFX_CTL_SET_VIDEO_MODE, &mode);
|
2015-03-22 17:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_video_output_size(unsigned *width, unsigned *height)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!video_driver_poke || !video_driver_poke->get_video_output_size)
|
|
|
|
return false;
|
|
|
|
video_driver_poke->get_video_output_size(video_driver_data,
|
|
|
|
width, height);
|
|
|
|
return true;
|
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-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_osd_msg)
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_poke->set_osd_msg(video_driver_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)
|
|
|
|
{
|
2015-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_texture_enable)
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_poke->set_texture_enable(video_driver_data,
|
|
|
|
enable, fullscreen);
|
2015-03-22 17:59:16 +00:00
|
|
|
}
|
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-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_texture_frame)
|
2016-02-06 20:51:37 +00:00
|
|
|
video_driver_poke->set_texture_frame(video_driver_data,
|
|
|
|
frame, rgb32, width, height, alpha);
|
2015-03-22 18:15:34 +00:00
|
|
|
#endif
|
|
|
|
}
|
2015-03-22 20:28:50 +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)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!current_video || !current_video->overlay_interface)
|
|
|
|
return false;
|
|
|
|
current_video->overlay_interface(video_driver_data, iface);
|
|
|
|
return true;
|
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)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
if (!current_video || !current_video->read_frame_raw)
|
|
|
|
return NULL;
|
|
|
|
return current_video->read_frame_raw(video_driver_data, width,
|
|
|
|
height, pitch);
|
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-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_filtering)
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_poke->set_filtering(video_driver_data, index, smooth);
|
2015-03-22 23:39:42 +00:00
|
|
|
}
|
2015-03-22 23:42:55 +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)
|
|
|
|
{
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_set_cached_frame_ptr(data);
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.frame_cache.width = width;
|
|
|
|
video_driver_state.frame_cache.height = height;
|
|
|
|
video_driver_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-11-30 06:14:23 +00:00
|
|
|
*data = video_driver_state.frame_cache.data;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (width)
|
2015-11-30 06:14:23 +00:00
|
|
|
*width = video_driver_state.frame_cache.width;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (height)
|
2015-11-30 06:14:23 +00:00
|
|
|
*height = video_driver_state.frame_cache.height;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (pitch)
|
2015-11-30 06:14:23 +00:00
|
|
|
*pitch = video_driver_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-11-30 06:14:23 +00:00
|
|
|
*width = video_driver_state.video_width;
|
2015-05-19 22:29:46 +00:00
|
|
|
if (height)
|
2015-11-30 06:14:23 +00:00
|
|
|
*height = video_driver_state.video_height;
|
2015-05-19 22:29:46 +00:00
|
|
|
}
|
2015-05-19 23:39:35 +00:00
|
|
|
|
2015-11-23 11:54:15 +00:00
|
|
|
void video_driver_set_size(unsigned *width, unsigned *height)
|
2015-05-19 23:39:35 +00:00
|
|
|
{
|
2015-11-23 11:54:15 +00:00
|
|
|
if (width)
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.video_width = *width;
|
2015-11-23 11:54:15 +00:00
|
|
|
if (height)
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.video_height = *height;
|
2015-05-20 03:35:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2015-12-06 12:28:20 +00:00
|
|
|
char msg[128];
|
2015-05-20 03:35:41 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
snprintf(msg, sizeof(msg),
|
|
|
|
"Setting refresh rate to: %.3f Hz.", hz);
|
2015-12-07 14:32:14 +00:00
|
|
|
runloop_msg_queue_push(msg, 1, 180, false);
|
2015-05-20 03:35:41 +00:00
|
|
|
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;
|
|
|
|
settings_t *settings = config_get_ptr();
|
2016-03-01 23:07:31 +00:00
|
|
|
unsigned samples = MIN(MEASURE_FRAME_TIME_SAMPLES_COUNT,
|
2016-03-04 19:14:39 +00:00
|
|
|
video_driver_state.frame_time.count);
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
if (settings->video.threaded || (samples < 2))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Measure statistics on frame time (microsecs), *not* FPS. */
|
|
|
|
for (i = 0; i < samples; i++)
|
2016-03-04 19:14:39 +00:00
|
|
|
accum += video_driver_state.frame_time.samples[i];
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
RARCH_LOG("Interval #%u: %d usec / frame.\n",
|
2016-03-04 19:14:39 +00:00
|
|
|
i, (int)video_driver_state.frame_time.samples[i]);
|
2015-05-20 03:35:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
avg = accum / samples;
|
|
|
|
|
|
|
|
/* Drop first measurement. It is likely to be bad. */
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
{
|
2016-03-04 19:14:39 +00:00
|
|
|
retro_time_t diff = video_driver_state.frame_time.samples[i] - avg;
|
2015-05-20 03:35:41 +00:00
|
|
|
accum_var += diff * diff;
|
|
|
|
}
|
|
|
|
|
|
|
|
*deviation = sqrt((double)accum_var / (samples - 1)) / avg;
|
|
|
|
*refresh_rate = 1000000.0 / avg;
|
|
|
|
*sample_points = samples;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
bool video_monitor_get_fps(char *buf, size_t size,
|
|
|
|
char *buf_fps, size_t size_fps)
|
|
|
|
{
|
|
|
|
static retro_time_t curr_time;
|
|
|
|
static retro_time_t fps_time;
|
2015-12-04 07:27:47 +00:00
|
|
|
retro_time_t new_time = retro_get_time_usec();
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
*buf = '\0';
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if (video_driver_frame_count)
|
2015-05-20 03:35:41 +00:00
|
|
|
{
|
2015-09-28 16:12:02 +00:00
|
|
|
static float last_fps;
|
2016-02-14 04:26:17 +00:00
|
|
|
bool ret = false;
|
2016-03-04 19:14:39 +00:00
|
|
|
unsigned write_index = video_driver_state.frame_time.count++ &
|
2015-05-20 03:35:41 +00:00
|
|
|
(MEASURE_FRAME_TIME_SAMPLES_COUNT - 1);
|
|
|
|
|
2016-03-04 19:14:39 +00:00
|
|
|
video_driver_state.frame_time.samples[write_index] = new_time - fps_time;
|
2015-05-20 03:35:41 +00:00
|
|
|
fps_time = new_time;
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
if ((video_driver_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,
|
2016-03-04 18:38:15 +00:00
|
|
|
video_driver_title_buf, last_fps,
|
2016-02-11 00:40:43 +00:00
|
|
|
(unsigned long long)video_driver_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-11-30 06:14:23 +00:00
|
|
|
last_fps, (unsigned long long)video_driver_frame_count);
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_time = fps_time = new_time;
|
2016-03-04 18:38:15 +00:00
|
|
|
strlcpy(buf, video_driver_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)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_state.aspect_ratio;
|
2015-05-20 16:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_aspect_ratio_value(float value)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.aspect_ratio = value;
|
2015-05-20 16:24:45 +00:00
|
|
|
}
|
2015-05-20 17:56:12 +00:00
|
|
|
|
2015-11-30 06:22:08 +00:00
|
|
|
static bool video_driver_frame_filter(const void *data,
|
2015-05-20 18:49:52 +00:00
|
|
|
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-30 06:14:23 +00:00
|
|
|
if (!video_driver_state.filter.filter || !data)
|
2015-05-20 18:49:52 +00:00
|
|
|
return false;
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
rarch_softfilter_get_output_size(video_driver_state.filter.filter,
|
2015-05-20 18:49:52 +00:00
|
|
|
output_width, output_height, width, height);
|
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
*output_pitch = (*output_width) * video_driver_state.filter.out_bpp;
|
2015-05-20 18:49:52 +00:00
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
retro_perf_start(&softfilter_process);
|
2015-11-30 06:14:23 +00:00
|
|
|
rarch_softfilter_process(video_driver_state.filter.filter,
|
|
|
|
video_driver_state.filter.buffer, *output_pitch,
|
2015-05-20 18:49:52 +00:00
|
|
|
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)
|
2015-11-30 06:14:23 +00:00
|
|
|
recording_dump_frame(video_driver_state.filter.buffer,
|
2015-05-20 18:49:52 +00:00
|
|
|
*output_width, *output_height, *output_pitch);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
rarch_softfilter_t *video_driver_frame_filter_get_ptr(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_state.filter.filter;
|
2015-05-20 18:49:52 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 18:59:12 +00:00
|
|
|
enum retro_pixel_format video_driver_get_pixel_format(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_state.pix_fmt;
|
2015-05-20 18:59:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_pixel_format(enum retro_pixel_format fmt)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_state.pix_fmt = fmt;
|
2015-05-20 18:59:12 +00:00
|
|
|
}
|
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-23 20:00:56 +00:00
|
|
|
static bool video_driver_cached_frame(void)
|
2015-11-20 14:34:10 +00:00
|
|
|
{
|
2016-01-27 03:49:38 +00:00
|
|
|
retro_ctx_frame_info_t info;
|
|
|
|
void *recording = recording_driver_get_data_ptr();
|
2015-11-20 14:34:10 +00:00
|
|
|
|
2015-11-30 20:42:59 +00:00
|
|
|
if (runloop_ctl(RUNLOOP_CTL_IS_IDLE, NULL))
|
2015-11-20 14:34:10 +00:00
|
|
|
return true; /* Maybe return false here for indication of idleness? */
|
|
|
|
|
|
|
|
/* Cannot allow recording when pushing duped frames. */
|
2015-12-05 15:05:35 +00:00
|
|
|
recording_driver_clear_data_ptr();
|
2015-11-20 14:34:10 +00:00
|
|
|
|
|
|
|
/* 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 ...
|
|
|
|
*/
|
2016-01-27 03:49:38 +00:00
|
|
|
info.data = NULL;
|
|
|
|
info.width = video_driver_state.frame_cache.width;
|
|
|
|
info.height = video_driver_state.frame_cache.height;
|
|
|
|
info.pitch = video_driver_state.frame_cache.pitch;
|
|
|
|
|
|
|
|
if (video_driver_state.frame_cache.data != RETRO_HW_FRAME_BUFFER_VALID)
|
|
|
|
info.data = video_driver_state.frame_cache.data;
|
|
|
|
|
2016-05-07 23:33:57 +00:00
|
|
|
core_frame(&info);
|
2015-11-20 14:34:10 +00:00
|
|
|
|
2015-12-05 15:05:35 +00:00
|
|
|
recording_driver_set_data_ptr(recording);
|
2015-11-20 14:34:10 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_monitor_adjust_system_rates(void)
|
2015-11-20 19:47:47 +00:00
|
|
|
{
|
|
|
|
float timing_skew;
|
|
|
|
const struct retro_system_timing *info = NULL;
|
2015-12-10 21:30:25 +00:00
|
|
|
struct retro_system_av_info *av_info =
|
2015-11-20 19:47:47 +00:00
|
|
|
video_viewport_get_system_av_info();
|
2015-12-10 21:30:25 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-11-20 19:47:47 +00:00
|
|
|
|
2016-03-04 18:20:00 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_UNSET_NONBLOCK_FORCED, NULL);
|
2015-11-20 19:47:47 +00:00
|
|
|
|
|
|
|
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. */
|
2016-03-04 18:20:00 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_SET_NONBLOCK_FORCED, NULL);
|
2015-11-20 19:47:47 +00:00
|
|
|
RARCH_LOG("Game FPS > Monitor FPS. Cannot rely on VSync.\n");
|
|
|
|
}
|
|
|
|
|
2015-11-21 15:32:22 +00:00
|
|
|
void video_driver_menu_settings(void **list_data, void *list_info_data,
|
|
|
|
void *group_data, void *subgroup_data, const char *parent_group)
|
2015-11-21 10:22:34 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
2015-11-21 15:32:22 +00:00
|
|
|
rarch_setting_t **list = (rarch_setting_t**)list_data;
|
|
|
|
rarch_setting_info_t *list_info = (rarch_setting_info_t*)list_info_data;
|
|
|
|
rarch_setting_group_info_t *group_info = (rarch_setting_group_info_t*)group_data;
|
2015-11-21 10:22:34 +00:00
|
|
|
rarch_setting_group_info_t *subgroup_info = (rarch_setting_group_info_t*)subgroup_data;
|
2015-11-21 15:32:22 +00:00
|
|
|
global_t *global = global_get_ptr();
|
2015-12-10 21:30:25 +00:00
|
|
|
|
2015-11-21 15:32:22 +00:00
|
|
|
(void)list;
|
|
|
|
(void)list_info;
|
2015-11-21 10:24:02 +00:00
|
|
|
(void)group_info;
|
|
|
|
(void)subgroup_info;
|
2015-11-21 15:32:22 +00:00
|
|
|
(void)global;
|
|
|
|
|
2015-11-21 10:22:34 +00:00
|
|
|
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
|
|
|
CONFIG_ACTION(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
menu_hash_to_str(MENU_LABEL_SCREEN_RESOLUTION),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_SCREEN_RESOLUTION),
|
2015-11-21 15:32:22 +00:00
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
parent_group);
|
|
|
|
#endif
|
|
|
|
#if defined(__CELLOS_LV2__)
|
|
|
|
CONFIG_BOOL(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
&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),
|
2015-11-21 15:32:22 +00:00
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
#endif
|
|
|
|
#if defined(HW_RVL) || defined(_XBOX360)
|
|
|
|
CONFIG_UINT(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
|
|
|
&global->console.screen.gamma_correction,
|
2015-11-21 10:22:34 +00:00
|
|
|
menu_hash_to_str(MENU_LABEL_VIDEO_GAMMA),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_GAMMA),
|
|
|
|
0,
|
2015-11-21 15:32:22 +00:00
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
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);
|
2016-02-06 20:51:37 +00:00
|
|
|
settings_data_list_current_add_flags(list, list_info,
|
|
|
|
SD_FLAG_CMD_APPLY_AUTO|SD_FLAG_ADVANCED);
|
2015-11-21 10:22:34 +00:00
|
|
|
#endif
|
|
|
|
#if defined(_XBOX1) || defined(HW_RVL)
|
|
|
|
CONFIG_BOOL(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
&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),
|
2015-11-21 15:32:22 +00:00
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
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(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
|
|
|
&settings->video.swap_interval,
|
2015-11-21 10:22:34 +00:00
|
|
|
menu_hash_to_str(MENU_LABEL_VIDEO_FILTER_FLICKER),
|
|
|
|
menu_hash_to_str(MENU_LABEL_VALUE_VIDEO_FILTER_FLICKER),
|
|
|
|
0,
|
2015-11-21 15:32:22 +00:00
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
2015-11-21 10:22:34 +00:00
|
|
|
parent_group,
|
|
|
|
general_write_handler,
|
|
|
|
general_read_handler);
|
|
|
|
menu_settings_list_current_add_range(list, list_info, 0, 5, 1, true, true);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
/* Graphics driver requires RGBA byte order data (ABGR on little-endian)
|
|
|
|
* for 32-bit.
|
|
|
|
* This takes effect for overlay and shader cores that wants to load
|
|
|
|
* data into graphics driver. Kinda hackish to place it here, it is only
|
|
|
|
* used for GLES.
|
|
|
|
* TODO: Refactor this better. */
|
|
|
|
static struct retro_hw_render_callback hw_render;
|
|
|
|
static bool video_driver_use_rgba = false;
|
|
|
|
static bool video_driver_data_own = false;
|
|
|
|
static bool video_driver_active = false;
|
|
|
|
static video_driver_frame_t frame_bak = NULL;
|
|
|
|
/* If set during context deinit, the driver should keep
|
|
|
|
* graphics context alive to avoid having to reset all
|
|
|
|
* context state. */
|
|
|
|
static bool video_driver_cache_context = false;
|
|
|
|
/* Set to true by driver if context caching succeeded. */
|
|
|
|
static bool video_driver_cache_context_ack = false;
|
|
|
|
static uint8_t *video_driver_record_gpu_buffer = NULL;
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-05-08 12:00:51 +00:00
|
|
|
static slock_t *display_lock = NULL;
|
2016-03-24 02:06:03 +00:00
|
|
|
#endif
|
2015-11-20 14:24:24 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_lock(void)
|
|
|
|
{
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!display_lock)
|
|
|
|
return;
|
|
|
|
slock_lock(display_lock);
|
2016-03-24 02:06:03 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unlock(void)
|
|
|
|
{
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!display_lock)
|
|
|
|
return;
|
|
|
|
slock_unlock(display_lock);
|
2016-03-24 02:06:03 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_lock_free(void)
|
|
|
|
{
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-05-08 12:00:51 +00:00
|
|
|
slock_free(display_lock);
|
|
|
|
display_lock = NULL;
|
2016-03-24 02:06:03 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_lock_new(void)
|
|
|
|
{
|
|
|
|
video_driver_lock_free();
|
2016-03-24 02:06:03 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!display_lock)
|
|
|
|
display_lock = slock_new();
|
|
|
|
retro_assert(display_lock);
|
2016-03-24 02:06:03 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_destroy(void)
|
|
|
|
{
|
|
|
|
video_driver_use_rgba = false;
|
|
|
|
video_driver_data_own = false;
|
|
|
|
video_driver_active = false;
|
|
|
|
video_driver_cache_context = false;
|
|
|
|
video_driver_cache_context_ack = false;
|
|
|
|
video_driver_record_gpu_buffer = NULL;
|
|
|
|
current_video = NULL;
|
|
|
|
}
|
2015-11-21 11:54:38 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_set_cached_frame_ptr(const void *data)
|
|
|
|
{
|
|
|
|
if (data)
|
|
|
|
video_driver_state.frame_cache.data = data;
|
|
|
|
}
|
2015-11-21 11:54:38 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_set_stub_frame(void)
|
|
|
|
{
|
|
|
|
frame_bak = current_video->frame;
|
|
|
|
current_video->frame = video_null.frame;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_unset_stub_frame(void)
|
|
|
|
{
|
|
|
|
if (frame_bak != NULL)
|
|
|
|
current_video->frame = frame_bak;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
frame_bak = NULL;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_supports_recording(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
return settings->video.gpu_record && current_video->read_viewport;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_supports_viewport_read(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
return (settings->video.gpu_screenshot ||
|
|
|
|
(video_driver_is_hw_context() && !current_video->read_frame_raw))
|
|
|
|
&& current_video->read_viewport && current_video->viewport_info;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_supports_read_frame_raw(void)
|
|
|
|
{
|
|
|
|
return current_video->read_frame_raw;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_set_viewport_config(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
struct retro_system_av_info *av_info = video_viewport_get_system_av_info();
|
2016-03-24 02:06:03 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (settings->video.aspect_ratio < 0.0f)
|
|
|
|
{
|
|
|
|
struct retro_game_geometry *geom = &av_info->geometry;
|
2015-12-04 00:21:46 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!geom)
|
|
|
|
return;
|
2015-12-04 00:21:46 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (geom->aspect_ratio > 0.0f && settings->video.aspect_ratio_auto)
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CONFIG].value = geom->aspect_ratio;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned base_width = geom->base_width;
|
|
|
|
unsigned base_height = geom->base_height;
|
|
|
|
|
|
|
|
/* Get around division by zero errors */
|
|
|
|
if (base_width == 0)
|
|
|
|
base_width = 1;
|
|
|
|
if (base_height == 0)
|
|
|
|
base_height = 1;
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CONFIG].value =
|
|
|
|
(float)base_width / base_height; /* 1:1 PAR. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CONFIG].value =
|
|
|
|
settings->video.aspect_ratio;
|
|
|
|
}
|
|
|
|
}
|
2015-11-20 16:22:19 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_set_viewport_square_pixel(void)
|
|
|
|
{
|
|
|
|
unsigned len, highest, i, aspect_x, aspect_y;
|
|
|
|
unsigned width, height;
|
|
|
|
struct retro_game_geometry *geom = NULL;
|
|
|
|
struct retro_system_av_info *av_info =
|
|
|
|
video_viewport_get_system_av_info();
|
2015-11-20 16:22:19 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (av_info)
|
|
|
|
geom = &av_info->geometry;
|
|
|
|
|
|
|
|
if (!geom)
|
|
|
|
return;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
width = geom->base_width;
|
|
|
|
height = geom->base_height;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (width == 0 || height == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
len = MIN(width, height);
|
|
|
|
highest = 1;
|
|
|
|
|
|
|
|
for (i = 1; i < len; i++)
|
|
|
|
{
|
|
|
|
if ((width % i) == 0 && (height % i) == 0)
|
|
|
|
highest = i;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
aspect_x = width / highest;
|
|
|
|
aspect_y = height / highest;
|
|
|
|
|
|
|
|
snprintf(aspectratio_lut[ASPECT_RATIO_SQUARE].name,
|
|
|
|
sizeof(aspectratio_lut[ASPECT_RATIO_SQUARE].name),
|
|
|
|
"%u:%u (1:1 PAR)", aspect_x, aspect_y);
|
|
|
|
|
|
|
|
aspectratio_lut[ASPECT_RATIO_SQUARE].value = (float)aspect_x / aspect_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_viewport_core(void)
|
|
|
|
{
|
|
|
|
struct retro_system_av_info *av_info =
|
|
|
|
video_viewport_get_system_av_info();
|
|
|
|
struct retro_game_geometry *geom = &av_info->geometry;
|
|
|
|
|
|
|
|
if (!geom || geom->base_width <= 0.0f || geom->base_height <= 0.0f)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Fallback to 1:1 pixel ratio if none provided */
|
|
|
|
if (geom->aspect_ratio > 0.0f)
|
|
|
|
{
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CORE].value = geom->aspect_ratio;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CORE].value =
|
|
|
|
(float)geom->base_width / geom->base_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_reset_custom_viewport(void)
|
|
|
|
{
|
|
|
|
struct video_viewport *custom_vp = video_viewport_get_custom();
|
|
|
|
if (!custom_vp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
custom_vp->width = 0;
|
|
|
|
custom_vp->height = 0;
|
|
|
|
custom_vp->x = 0;
|
|
|
|
custom_vp->y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_rgba(void)
|
|
|
|
{
|
|
|
|
video_driver_lock();
|
|
|
|
video_driver_use_rgba = true;
|
|
|
|
video_driver_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unset_rgba(void)
|
|
|
|
{
|
|
|
|
video_driver_lock();
|
|
|
|
video_driver_use_rgba = false;
|
|
|
|
video_driver_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_supports_rgba(void)
|
|
|
|
{
|
|
|
|
bool tmp;
|
|
|
|
video_driver_lock();
|
|
|
|
tmp = video_driver_use_rgba;
|
|
|
|
video_driver_unlock();
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_next_video_out(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!video_driver_poke->get_video_output_next)
|
|
|
|
return gfx_ctx_ctl(GFX_CTL_GET_VIDEO_OUTPUT_NEXT, NULL);
|
|
|
|
video_driver_poke->get_video_output_next(video_driver_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_prev_video_out(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!video_driver_poke->get_video_output_prev)
|
|
|
|
return gfx_ctx_ctl(GFX_CTL_GET_VIDEO_OUTPUT_NEXT, NULL);
|
|
|
|
video_driver_poke->get_video_output_prev(video_driver_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_init(void)
|
|
|
|
{
|
|
|
|
video_driver_lock_new();
|
|
|
|
return init_video();
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_destroy_data(void)
|
|
|
|
{
|
|
|
|
video_driver_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_deinit(void)
|
|
|
|
{
|
|
|
|
uninit_video_input();
|
|
|
|
video_driver_lock_free();
|
|
|
|
video_driver_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_monitor_reset(void)
|
|
|
|
{
|
|
|
|
video_driver_state.frame_time.count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_aspect_ratio(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
if (!video_driver_poke || !video_driver_poke->set_aspect_ratio)
|
|
|
|
return;
|
|
|
|
video_driver_poke->set_aspect_ratio(
|
|
|
|
video_driver_data, settings->video.aspect_ratio_idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_show_mouse(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke)
|
|
|
|
return;
|
|
|
|
if (video_driver_poke->show_mouse)
|
|
|
|
video_driver_poke->show_mouse(video_driver_data, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_hide_mouse(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke)
|
|
|
|
return;
|
|
|
|
if (video_driver_poke->show_mouse)
|
|
|
|
video_driver_poke->show_mouse(video_driver_data, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_nonblock_state(bool toggle)
|
|
|
|
{
|
|
|
|
if (current_video->set_nonblock_state)
|
|
|
|
current_video->set_nonblock_state(video_driver_data, toggle);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_find_driver(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
int i;
|
|
|
|
driver_ctx_info_t drv;
|
|
|
|
|
|
|
|
if (video_driver_is_hw_context())
|
|
|
|
{
|
|
|
|
current_video = NULL;
|
|
|
|
struct retro_hw_render_callback *hwr = video_driver_get_hw_context();
|
|
|
|
|
|
|
|
if (hwr && hw_render_context_is_vulkan(hwr->context_type))
|
|
|
|
{
|
2016-03-04 18:12:54 +00:00
|
|
|
#if defined(HAVE_VULKAN)
|
2016-05-08 12:00:51 +00:00
|
|
|
RARCH_LOG("Using HW render, Vulkan driver forced.\n");
|
|
|
|
current_video = &video_vulkan;
|
2016-03-04 18:12:54 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (hwr && hw_render_context_is_gl(hwr->context_type))
|
|
|
|
{
|
2016-03-04 18:12:54 +00:00
|
|
|
#if defined(HAVE_OPENGL) && defined(HAVE_FBO)
|
2016-05-08 12:00:51 +00:00
|
|
|
RARCH_LOG("Using HW render, OpenGL driver forced.\n");
|
|
|
|
current_video = &video_gl;
|
2016-03-04 18:12:54 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (current_video)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frontend_driver_has_get_video_driver_func())
|
|
|
|
{
|
|
|
|
current_video = (video_driver_t*)frontend_driver_get_video_driver();
|
|
|
|
|
|
|
|
if (current_video)
|
|
|
|
return true;
|
|
|
|
RARCH_WARN("Frontend supports get_video_driver() but did not specify one.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
drv.label = "video_driver";
|
|
|
|
drv.s = settings->video.driver;
|
|
|
|
|
|
|
|
driver_ctl(RARCH_DRIVER_CTL_FIND_INDEX, &drv);
|
|
|
|
|
|
|
|
i = drv.len;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (i >= 0)
|
|
|
|
current_video = (video_driver_t*)video_driver_find_handle(i);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any video driver named \"%s\"\n",
|
|
|
|
settings->video.driver);
|
|
|
|
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");
|
|
|
|
|
|
|
|
current_video = (video_driver_t*)video_driver_find_handle(0);
|
|
|
|
|
|
|
|
if (!current_video)
|
|
|
|
retro_fail(1, "find_video_driver()");
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_apply_state_changes(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke)
|
|
|
|
return;
|
|
|
|
if (video_driver_poke->apply_state_changes)
|
|
|
|
video_driver_poke->apply_state_changes(video_driver_data);
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_read_viewport(uint8_t *buffer)
|
|
|
|
{
|
|
|
|
if (!current_video->read_viewport)
|
|
|
|
return false;
|
|
|
|
if (!current_video->read_viewport(video_driver_data, buffer))
|
|
|
|
return false;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_cached_frame_has_valid_framebuffer(void)
|
|
|
|
{
|
|
|
|
if (!video_driver_state.frame_cache.data)
|
|
|
|
return false;
|
|
|
|
return video_driver_state.frame_cache.data == RETRO_HW_FRAME_BUFFER_VALID;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_cached_frame_render(void)
|
|
|
|
{
|
|
|
|
if (!current_video)
|
|
|
|
return false;
|
|
|
|
return video_driver_cached_frame();
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_is_alive(void)
|
|
|
|
{
|
|
|
|
if (current_video)
|
|
|
|
return current_video->alive(video_driver_data);
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_is_focused(void)
|
|
|
|
{
|
|
|
|
return current_video->focus(video_driver_data);
|
|
|
|
}
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_has_windowed(void)
|
|
|
|
{
|
2016-02-07 00:11:07 +00:00
|
|
|
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
|
2016-05-08 12:00:51 +00:00
|
|
|
return false;
|
2016-02-07 00:11:07 +00:00
|
|
|
#else
|
2016-05-08 12:00:51 +00:00
|
|
|
return current_video->has_windowed(video_driver_data);
|
2016-02-07 00:11:07 +00:00
|
|
|
#endif
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
2015-11-21 08:54:55 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
uint64_t *video_driver_get_frame_count_ptr(void)
|
|
|
|
{
|
|
|
|
return &video_driver_frame_count;
|
|
|
|
}
|
2015-11-21 08:54:55 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_frame_filter_alive(void)
|
|
|
|
{
|
|
|
|
return !!video_driver_state.filter.filter;
|
|
|
|
}
|
2015-11-21 08:54:55 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_frame_filter_is_32bit(void)
|
|
|
|
{
|
|
|
|
return video_driver_state.filter.out_rgb32;
|
|
|
|
}
|
2015-12-06 14:22:20 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_default_settings(void)
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
|
|
|
|
if (!global)
|
|
|
|
return;
|
|
|
|
|
|
|
|
global->console.screen.gamma_correction = DEFAULT_GAMMA;
|
|
|
|
global->console.flickerfilter_enable = false;
|
|
|
|
global->console.softfilter_enable = false;
|
|
|
|
|
|
|
|
global->console.screen.resolutions.current.id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_load_settings(config_file_t *conf)
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
|
|
|
|
if (!conf)
|
|
|
|
return;
|
2015-11-20 14:08:27 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
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.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");
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_save_settings(config_file_t *conf)
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
if (!conf)
|
|
|
|
return;
|
|
|
|
|
|
|
|
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, "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);
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_own_driver(void)
|
|
|
|
{
|
|
|
|
video_driver_data_own = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unset_own_driver(void)
|
|
|
|
{
|
|
|
|
video_driver_data_own = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_owns_driver(void)
|
|
|
|
{
|
|
|
|
return video_driver_data_own;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_is_hw_context(void)
|
|
|
|
{
|
|
|
|
return hw_render.context_type != RETRO_HW_CONTEXT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_deinit_hw_context(void)
|
|
|
|
{
|
|
|
|
if (hw_render.context_destroy)
|
|
|
|
hw_render.context_destroy();
|
|
|
|
|
|
|
|
memset(&hw_render, 0, sizeof(hw_render));
|
|
|
|
}
|
|
|
|
|
|
|
|
struct retro_hw_render_callback *video_driver_get_hw_context(void)
|
|
|
|
{
|
|
|
|
return &hw_render;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_video_cache_context(void)
|
|
|
|
{
|
|
|
|
video_driver_cache_context = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unset_video_cache_context(void)
|
|
|
|
{
|
|
|
|
video_driver_cache_context = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_is_video_cache_context(void)
|
|
|
|
{
|
|
|
|
return video_driver_cache_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_video_cache_context_ack(void)
|
|
|
|
{
|
|
|
|
video_driver_cache_context_ack = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unset_video_cache_context_ack(void)
|
|
|
|
{
|
|
|
|
video_driver_cache_context_ack = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_is_video_cache_context_ack(void)
|
|
|
|
{
|
|
|
|
return video_driver_cache_context_ack;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_active(void)
|
|
|
|
{
|
|
|
|
video_driver_active = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_unset_active(void)
|
|
|
|
{
|
|
|
|
video_driver_active = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_is_active(void)
|
|
|
|
{
|
|
|
|
return video_driver_active;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_has_gpu_record(void)
|
|
|
|
{
|
|
|
|
return video_driver_record_gpu_buffer != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t *video_driver_get_gpu_record(void)
|
|
|
|
{
|
|
|
|
return video_driver_record_gpu_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_gpu_record_init(unsigned size)
|
|
|
|
{
|
|
|
|
video_driver_record_gpu_buffer = (uint8_t*)malloc(size);
|
|
|
|
if (!video_driver_record_gpu_buffer)
|
|
|
|
return false;
|
2016-02-11 00:42:47 +00:00
|
|
|
return true;
|
2015-11-20 14:08:27 +00:00
|
|
|
}
|
2015-11-21 12:01:23 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_gpu_record_deinit(void)
|
|
|
|
{
|
|
|
|
free(video_driver_record_gpu_buffer);
|
|
|
|
video_driver_record_gpu_buffer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_current_software_framebuffer(struct retro_framebuffer *fb)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
!video_driver_poke ||
|
|
|
|
!video_driver_poke->get_current_software_framebuffer)
|
|
|
|
return false;
|
|
|
|
if (!video_driver_poke->get_current_software_framebuffer(
|
|
|
|
video_driver_data, fb))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_hw_render_interface(const struct retro_hw_render_interface **iface)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
!video_driver_poke ||
|
|
|
|
!video_driver_poke->get_hw_render_interface)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!video_driver_poke->get_hw_render_interface(video_driver_data, iface))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_get_viewport_info(struct video_viewport *viewport)
|
|
|
|
{
|
|
|
|
if (!current_video || !current_video->viewport_info)
|
|
|
|
return false;
|
|
|
|
current_video->viewport_info(video_driver_data, viewport);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_title_buf(void)
|
|
|
|
{
|
|
|
|
struct retro_system_info info;
|
|
|
|
core_get_system_info(&info);
|
|
|
|
strlcpy(video_driver_title_buf,
|
|
|
|
msg_hash_to_str(MSG_PROGRAM),
|
|
|
|
sizeof(video_driver_title_buf));
|
|
|
|
strlcat(video_driver_title_buf,
|
|
|
|
" ", sizeof(video_driver_title_buf));
|
|
|
|
strlcat(video_driver_title_buf,
|
|
|
|
info.library_name,
|
|
|
|
sizeof(video_driver_title_buf));
|
|
|
|
strlcat(video_driver_title_buf,
|
|
|
|
" ", sizeof(video_driver_title_buf));
|
|
|
|
strlcat(video_driver_title_buf,
|
|
|
|
info.library_version,
|
|
|
|
sizeof(video_driver_title_buf));
|
|
|
|
}
|
2015-11-21 12:01:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* video_viewport_get_scaled_integer:
|
|
|
|
* @vp : Viewport handle
|
|
|
|
* @width : Width.
|
|
|
|
* @height : Height.
|
|
|
|
* @aspect_ratio : Aspect ratio (in float).
|
|
|
|
* @keep_aspect : Preserve aspect ratio?
|
|
|
|
*
|
|
|
|
* Gets viewport scaling dimensions based on
|
|
|
|
* scaled integer aspect ratio.
|
|
|
|
**/
|
|
|
|
void video_viewport_get_scaled_integer(struct video_viewport *vp,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
float aspect_ratio, bool keep_aspect)
|
|
|
|
{
|
2016-02-14 04:26:17 +00:00
|
|
|
int padding_x = 0;
|
|
|
|
int padding_y = 0;
|
2015-11-21 12:01:23 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
|
|
|
if (!vp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (settings->video.aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
|
|
|
|
{
|
|
|
|
struct video_viewport *custom = video_viewport_get_custom();
|
|
|
|
|
|
|
|
if (custom)
|
|
|
|
{
|
|
|
|
padding_x = width - custom->width;
|
|
|
|
padding_y = height - custom->height;
|
2016-02-14 04:26:17 +00:00
|
|
|
width = custom->width;
|
|
|
|
height = custom->height;
|
2015-11-21 12:01:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned base_width;
|
|
|
|
/* Use system reported sizes as these define the
|
|
|
|
* geometry for the "normal" case. */
|
2016-02-06 20:51:37 +00:00
|
|
|
struct retro_system_av_info *av_info =
|
|
|
|
video_viewport_get_system_av_info();
|
|
|
|
unsigned base_height = 0;
|
|
|
|
|
|
|
|
if (av_info)
|
|
|
|
base_height = av_info->geometry.base_height;
|
2015-11-21 12:01:23 +00:00
|
|
|
|
|
|
|
if (base_height == 0)
|
|
|
|
base_height = 1;
|
|
|
|
|
|
|
|
/* Account for non-square pixels.
|
|
|
|
* This is sort of contradictory with the goal of integer scale,
|
|
|
|
* but it is desirable in some cases.
|
|
|
|
*
|
|
|
|
* If square pixels are used, base_height will be equal to
|
|
|
|
* system->av_info.base_height. */
|
|
|
|
base_width = (unsigned)roundf(base_height * aspect_ratio);
|
|
|
|
|
|
|
|
/* Make sure that we don't get 0x scale ... */
|
|
|
|
if (width >= base_width && height >= base_height)
|
|
|
|
{
|
|
|
|
if (keep_aspect)
|
|
|
|
{
|
|
|
|
/* X/Y scale must be same. */
|
2016-03-01 23:07:31 +00:00
|
|
|
unsigned max_scale = MIN(width / base_width,
|
2016-02-06 20:51:37 +00:00
|
|
|
height / base_height);
|
2016-03-01 23:07:31 +00:00
|
|
|
padding_x = width - base_width * max_scale;
|
|
|
|
padding_y = height - base_height * max_scale;
|
2015-11-21 12:01:23 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* X/Y can be independent, each scaled as much as possible. */
|
|
|
|
padding_x = width % base_width;
|
|
|
|
padding_y = height % base_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
width -= padding_x;
|
|
|
|
height -= padding_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
vp->width = width;
|
|
|
|
vp->height = height;
|
|
|
|
vp->x = padding_x / 2;
|
|
|
|
vp->y = padding_y / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct retro_system_av_info *video_viewport_get_system_av_info(void)
|
|
|
|
{
|
2015-12-04 01:29:49 +00:00
|
|
|
static struct retro_system_av_info av_info;
|
|
|
|
|
|
|
|
return &av_info;
|
2015-11-21 12:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct video_viewport *video_viewport_get_custom(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
return &settings->video_viewport_custom;
|
|
|
|
}
|
2015-11-23 12:02:07 +00:00
|
|
|
|
|
|
|
unsigned video_pixel_get_alignment(unsigned pitch)
|
|
|
|
{
|
|
|
|
if (pitch & 1)
|
|
|
|
return 1;
|
|
|
|
if (pitch & 2)
|
|
|
|
return 2;
|
|
|
|
if (pitch & 4)
|
|
|
|
return 4;
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
2015-11-24 00:30:52 +00:00
|
|
|
static bool video_pixel_frame_scale(const void *data,
|
2015-11-23 12:02:07 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
size_t pitch)
|
|
|
|
{
|
|
|
|
static struct retro_perf_counter video_frame_conv = {0};
|
|
|
|
|
|
|
|
rarch_perf_init(&video_frame_conv, "video_frame_conv");
|
|
|
|
|
2016-02-06 20:51:37 +00:00
|
|
|
if ( !data
|
|
|
|
|| video_driver_get_pixel_format() != RETRO_PIXEL_FORMAT_0RGB1555)
|
2015-11-23 12:02:07 +00:00
|
|
|
return false;
|
|
|
|
if (data == RETRO_HW_FRAME_BUFFER_VALID)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
retro_perf_start(&video_frame_conv);
|
|
|
|
|
2015-12-03 22:16:37 +00:00
|
|
|
video_driver_scaler_ptr->scaler->in_width = width;
|
|
|
|
video_driver_scaler_ptr->scaler->in_height = height;
|
|
|
|
video_driver_scaler_ptr->scaler->out_width = width;
|
|
|
|
video_driver_scaler_ptr->scaler->out_height = height;
|
|
|
|
video_driver_scaler_ptr->scaler->in_stride = pitch;
|
|
|
|
video_driver_scaler_ptr->scaler->out_stride = width * sizeof(uint16_t);
|
2015-11-23 12:02:07 +00:00
|
|
|
|
2015-12-03 22:16:37 +00:00
|
|
|
scaler_ctx_scale(video_driver_scaler_ptr->scaler,
|
|
|
|
video_driver_scaler_ptr->scaler_out, data);
|
2015-11-23 12:02:07 +00:00
|
|
|
|
|
|
|
retro_perf_stop(&video_frame_conv);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2015-11-23 13:53:56 +00:00
|
|
|
|
2015-11-24 00:26:59 +00:00
|
|
|
/**
|
2015-12-03 23:26:09 +00:00
|
|
|
* video_driver_frame:
|
2015-11-24 00:26:59 +00:00
|
|
|
* @data : pointer to data of the video frame.
|
|
|
|
* @width : width of the video frame.
|
|
|
|
* @height : height of the video frame.
|
|
|
|
* @pitch : pitch of the video frame.
|
|
|
|
*
|
|
|
|
* Video frame render callback function.
|
|
|
|
**/
|
2015-12-03 23:26:09 +00:00
|
|
|
void video_driver_frame(const void *data, unsigned width,
|
2015-11-24 00:26:59 +00:00
|
|
|
unsigned height, size_t pitch)
|
|
|
|
{
|
2015-12-07 09:59:53 +00:00
|
|
|
static char video_driver_msg[256];
|
2015-11-24 00:26:59 +00:00
|
|
|
unsigned output_width = 0;
|
|
|
|
unsigned output_height = 0;
|
|
|
|
unsigned output_pitch = 0;
|
2016-02-13 04:17:36 +00:00
|
|
|
const char *msg = NULL;
|
2015-11-24 00:26:59 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
|
2016-02-13 04:17:36 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_PULL, &msg);
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!video_driver_is_active())
|
2015-11-24 00:26:59 +00:00
|
|
|
return;
|
|
|
|
|
2015-12-03 22:16:37 +00:00
|
|
|
if (video_driver_scaler_ptr &&
|
|
|
|
video_pixel_frame_scale(data, width, height, pitch))
|
2015-11-24 00:26:59 +00:00
|
|
|
{
|
2015-12-03 22:16:37 +00:00
|
|
|
data = video_driver_scaler_ptr->scaler_out;
|
|
|
|
pitch = video_driver_scaler_ptr->scaler->out_stride;
|
2015-11-24 00:26:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
video_driver_cached_frame_set(data, width, height, pitch);
|
|
|
|
|
|
|
|
/* Slightly messy code,
|
|
|
|
* but we really need to do processing before blocking on VSync
|
|
|
|
* for best possible scheduling.
|
|
|
|
*/
|
2015-11-30 06:22:08 +00:00
|
|
|
if (
|
|
|
|
(
|
|
|
|
!video_driver_state.filter.filter
|
|
|
|
|| !settings->video.post_filter_record
|
|
|
|
|| !data
|
2016-05-08 12:00:51 +00:00
|
|
|
|| video_driver_has_gpu_record()
|
2015-11-30 06:22:08 +00:00
|
|
|
)
|
2015-11-24 00:26:59 +00:00
|
|
|
)
|
|
|
|
recording_dump_frame(data, width, height, pitch);
|
|
|
|
|
|
|
|
if (video_driver_frame_filter(data, width, height, pitch,
|
|
|
|
&output_width, &output_height, &output_pitch))
|
|
|
|
{
|
2015-12-09 08:10:21 +00:00
|
|
|
data = video_driver_state.filter.buffer;
|
2015-11-24 00:26:59 +00:00
|
|
|
width = output_width;
|
|
|
|
height = output_height;
|
|
|
|
pitch = output_pitch;
|
|
|
|
}
|
|
|
|
|
2015-12-07 09:59:53 +00:00
|
|
|
video_driver_msg[0] = '\0';
|
|
|
|
if (msg)
|
|
|
|
strlcpy(video_driver_msg, msg, sizeof(video_driver_msg));
|
|
|
|
|
2015-12-03 22:16:37 +00:00
|
|
|
if (!current_video || !current_video->frame(
|
2016-02-14 04:26:17 +00:00
|
|
|
video_driver_data, data, width, height,
|
|
|
|
video_driver_frame_count,
|
2015-12-07 09:59:53 +00:00
|
|
|
pitch, video_driver_msg))
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
|
|
|
video_driver_unset_active();
|
|
|
|
}
|
2015-11-24 00:30:52 +00:00
|
|
|
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_frame_count++;
|
2015-11-24 00:26:59 +00:00
|
|
|
}
|
2015-11-29 00:12:49 +00:00
|
|
|
|
|
|
|
void video_driver_display_type_set(enum rarch_display_type type)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_display_type = type;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uintptr_t video_driver_display_get(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_display;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_display_set(uintptr_t idx)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_display = idx;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum rarch_display_type video_driver_display_type_get(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_display_type;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_window_set(uintptr_t idx)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
video_driver_window = idx;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uintptr_t video_driver_window_get(void)
|
|
|
|
{
|
2015-11-30 06:14:23 +00:00
|
|
|
return video_driver_window;
|
2015-11-29 00:12:49 +00:00
|
|
|
}
|
2015-12-20 19:52:23 +00:00
|
|
|
|
|
|
|
bool video_driver_texture_load(void *data,
|
|
|
|
enum texture_filter_type filter_type,
|
2016-02-16 19:24:00 +00:00
|
|
|
uintptr_t *id)
|
2015-12-20 19:52:23 +00:00
|
|
|
{
|
2015-12-25 06:11:17 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2015-12-20 19:52:23 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-12-25 06:11:17 +00:00
|
|
|
#endif
|
2015-12-20 19:52:23 +00:00
|
|
|
|
2015-12-25 06:11:17 +00:00
|
|
|
if (!id || !video_driver_poke || !video_driver_poke->load_texture)
|
2015-12-20 19:52:23 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
*id = video_driver_poke->load_texture(video_driver_data, data,
|
|
|
|
#ifdef HAVE_THREADS
|
2016-02-07 19:32:53 +00:00
|
|
|
settings->video.threaded
|
2016-05-08 12:00:51 +00:00
|
|
|
&& !video_driver_is_hw_context(),
|
2015-12-20 19:52:23 +00:00
|
|
|
#else
|
|
|
|
false,
|
|
|
|
#endif
|
|
|
|
filter_type);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_texture_unload(uintptr_t *id)
|
|
|
|
{
|
|
|
|
if (!video_driver_poke || !video_driver_poke->unload_texture)
|
|
|
|
return false;
|
|
|
|
|
2016-02-16 19:24:00 +00:00
|
|
|
video_driver_poke->unload_texture(video_driver_data, *id);
|
|
|
|
*id = 0;
|
2015-12-20 19:52:23 +00:00
|
|
|
return true;
|
|
|
|
}
|