2015-01-12 17:26:46 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - 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-09-08 06:10:31 +00:00
|
|
|
#include <compat/strl.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
#include <file/config_file.h>
|
|
|
|
#include <features/features_cpu.h>
|
|
|
|
#include <file/file_path.h>
|
2017-01-12 09:52:04 +00:00
|
|
|
#include <string/stdstring.h>
|
2017-06-28 02:41:38 +00:00
|
|
|
#include <retro_math.h>
|
2016-09-08 06:10:31 +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-11-08 14:35:24 +00:00
|
|
|
#include <gfx/video_frame.h>
|
2016-09-28 14:01:46 +00:00
|
|
|
#include <formats/image.h>
|
2016-09-08 06:10:31 +00:00
|
|
|
|
2018-01-31 03:11:09 +00:00
|
|
|
#include "menu/menu_shader.h"
|
|
|
|
|
2016-09-08 06:10:31 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-08-07 16:05:43 +00:00
|
|
|
#include "../dynamic.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
|
|
|
|
2016-09-08 06:10:31 +00:00
|
|
|
#ifdef HAVE_MENU
|
2017-01-22 16:30:32 +00:00
|
|
|
#include "../menu/menu_driver.h"
|
2016-09-08 06:10:31 +00:00
|
|
|
#include "../menu/menu_setting.h"
|
|
|
|
#endif
|
2015-11-21 08:32:51 +00:00
|
|
|
|
2015-01-12 19:20:58 +00:00
|
|
|
#include "video_thread_wrapper.h"
|
2017-05-08 23:25:59 +00:00
|
|
|
#include "video_driver.h"
|
2017-12-11 23:12:32 +00:00
|
|
|
#include "video_display_server.h"
|
2016-09-11 15:55:46 +00:00
|
|
|
|
|
|
|
#include "../frontend/frontend_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-09-05 16:31:32 +00:00
|
|
|
#include "../configuration.h"
|
2016-09-11 16:49:38 +00:00
|
|
|
#include "../driver.h"
|
2016-03-22 01:45:25 +00:00
|
|
|
#include "../retroarch.h"
|
2017-05-08 22:58:01 +00:00
|
|
|
#include "../input/input_driver.h"
|
2016-03-20 16:28:24 +00:00
|
|
|
#include "../list_special.h"
|
2016-05-08 03:29:10 +00:00
|
|
|
#include "../core.h"
|
2016-05-09 18:30:47 +00:00
|
|
|
#include "../command.h"
|
2016-03-04 18:38:15 +00:00
|
|
|
#include "../msg_hash.h"
|
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
|
|
|
|
|
2017-04-29 16:33:50 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
#define video_driver_is_threaded() ((!video_driver_is_hw_context() && video_driver_threaded) ? true : false)
|
|
|
|
#else
|
|
|
|
#define video_driver_is_threaded() (false)
|
|
|
|
#endif
|
|
|
|
|
2017-01-17 23:42:58 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
#define video_driver_lock() \
|
|
|
|
if (display_lock) \
|
|
|
|
slock_lock(display_lock)
|
|
|
|
|
|
|
|
#define video_driver_unlock() \
|
|
|
|
if (display_lock) \
|
|
|
|
slock_unlock(display_lock)
|
|
|
|
|
2017-01-18 00:09:15 +00:00
|
|
|
#define video_driver_context_lock() \
|
|
|
|
if (context_lock) \
|
|
|
|
slock_lock(context_lock)
|
|
|
|
|
|
|
|
#define video_driver_context_unlock() \
|
|
|
|
if (context_lock) \
|
|
|
|
slock_unlock(context_lock)
|
|
|
|
|
2017-01-17 23:42:58 +00:00
|
|
|
#define video_driver_lock_free() \
|
|
|
|
slock_free(display_lock); \
|
2017-01-18 00:09:15 +00:00
|
|
|
slock_free(context_lock); \
|
|
|
|
display_lock = NULL; \
|
|
|
|
context_lock = NULL
|
2017-01-17 23:42:58 +00:00
|
|
|
|
2017-04-29 15:38:47 +00:00
|
|
|
#define video_driver_threaded_lock(is_threaded) \
|
|
|
|
if (is_threaded) \
|
2017-01-17 23:42:58 +00:00
|
|
|
video_driver_lock()
|
|
|
|
|
2017-04-29 15:38:47 +00:00
|
|
|
#define video_driver_threaded_unlock(is_threaded) \
|
|
|
|
if (is_threaded) \
|
2017-01-17 23:42:58 +00:00
|
|
|
video_driver_unlock()
|
|
|
|
#else
|
|
|
|
#define video_driver_lock() ((void)0)
|
|
|
|
#define video_driver_unlock() ((void)0)
|
|
|
|
#define video_driver_lock_free() ((void)0)
|
2017-04-29 15:38:47 +00:00
|
|
|
#define video_driver_threaded_lock(is_threaded) ((void)0)
|
|
|
|
#define video_driver_threaded_unlock(is_threaded) ((void)0)
|
2017-01-18 00:09:15 +00:00
|
|
|
#define video_driver_context_lock() ((void)0)
|
|
|
|
#define video_driver_context_unlock() ((void)0)
|
2017-01-17 23:42:58 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-29 00:48:25 +00:00
|
|
|
typedef struct video_pixel_scaler
|
|
|
|
{
|
|
|
|
struct scaler_ctx *scaler;
|
|
|
|
void *scaler_out;
|
|
|
|
} video_pixel_scaler_t;
|
|
|
|
|
2017-09-08 03:58:48 +00:00
|
|
|
static void (*video_driver_cb_shader_use)(void *data,
|
|
|
|
void *shader_data, unsigned index, bool set_active);
|
|
|
|
static bool (*video_driver_cb_shader_set_mvp)(void *data,
|
2017-11-15 13:09:41 +00:00
|
|
|
void *shader_data, const void *mat_data);
|
2017-05-20 12:11:50 +00:00
|
|
|
bool (*video_driver_cb_has_focus)(void);
|
2017-05-19 13:59:28 +00:00
|
|
|
|
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. */
|
2016-12-05 01:09:32 +00:00
|
|
|
static uintptr_t video_driver_display = 0;
|
|
|
|
static uintptr_t video_driver_window = 0;
|
2015-11-29 00:12:49 +00:00
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
static rarch_softfilter_t *video_driver_state_filter = NULL;
|
|
|
|
static void *video_driver_state_buffer = NULL;
|
|
|
|
static unsigned video_driver_state_scale = 0;
|
|
|
|
static unsigned video_driver_state_out_bpp = 0;
|
|
|
|
static bool video_driver_state_out_rgb32 = false;
|
2015-11-24 00:54:21 +00:00
|
|
|
|
2017-05-18 07:44:51 +00:00
|
|
|
static struct retro_system_av_info video_driver_av_info;
|
|
|
|
|
2016-11-06 12:34:48 +00:00
|
|
|
static enum retro_pixel_format video_driver_pix_fmt = RETRO_PIXEL_FORMAT_0RGB1555;
|
2016-10-01 02:21:33 +00:00
|
|
|
|
2017-05-13 17:37:16 +00:00
|
|
|
static const void *frame_cache_data = NULL;
|
2016-10-01 02:24:57 +00:00
|
|
|
static unsigned frame_cache_width = 0;
|
|
|
|
static unsigned frame_cache_height = 0;
|
|
|
|
static size_t frame_cache_pitch = 0;
|
2017-04-29 14:37:49 +00:00
|
|
|
static bool video_driver_threaded = false;
|
2016-10-01 02:24:57 +00:00
|
|
|
|
2017-02-16 00:30:50 +00:00
|
|
|
static float video_driver_aspect_ratio = 0.0f;
|
2016-10-01 02:21:33 +00:00
|
|
|
static unsigned video_driver_width = 0;
|
|
|
|
static unsigned video_driver_height = 0;
|
|
|
|
|
2016-09-12 16:37:32 +00:00
|
|
|
static enum rarch_display_type video_driver_display_type = RARCH_DISPLAY_NONE;
|
|
|
|
static char video_driver_title_buf[64] = {0};
|
2017-01-19 05:33:52 +00:00
|
|
|
static char video_driver_window_title[128] = {0};
|
|
|
|
static bool video_driver_window_title_update = true;
|
2015-11-23 17:11:17 +00:00
|
|
|
|
2016-10-01 02:21:33 +00:00
|
|
|
static retro_time_t video_driver_frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
|
|
|
|
static uint64_t video_driver_frame_time_count = 0;
|
2016-09-12 16:37:32 +00:00
|
|
|
static uint64_t video_driver_frame_count = 0;
|
2015-11-23 21:14:39 +00:00
|
|
|
|
2017-05-20 12:09:24 +00:00
|
|
|
static void *video_driver_data = NULL;
|
|
|
|
static video_driver_t *current_video = NULL;
|
2016-09-12 16:37:32 +00:00
|
|
|
|
|
|
|
/* Interface for "poking". */
|
|
|
|
static const video_poke_interface_t *video_driver_poke = NULL;
|
2015-05-20 00:55:04 +00:00
|
|
|
|
2016-11-20 14:23:43 +00:00
|
|
|
/* Used for 15-bit -> 16-bit conversions that take place before
|
2015-11-23 12:02:07 +00:00
|
|
|
* being passed to video driver. */
|
2016-09-12 16:37:32 +00:00
|
|
|
static video_pixel_scaler_t *video_driver_scaler_ptr = NULL;
|
2015-11-23 12:02:07 +00:00
|
|
|
|
2016-11-06 12:42:34 +00:00
|
|
|
static struct retro_hw_render_callback hw_render;
|
|
|
|
|
2017-12-12 07:55:31 +00:00
|
|
|
static const struct
|
2017-01-05 03:52:04 +00:00
|
|
|
retro_hw_render_context_negotiation_interface *
|
|
|
|
hw_render_context_negotiation = NULL;
|
2016-11-06 12:42:34 +00:00
|
|
|
|
2017-01-23 13:40:48 +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. */
|
2016-11-06 12:42:34 +00:00
|
|
|
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
|
2017-12-12 07:55:31 +00:00
|
|
|
* graphics context alive to avoid having to reset all
|
2016-11-06 12:42:34 +00:00
|
|
|
* 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;
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
static slock_t *display_lock = NULL;
|
2017-01-18 00:09:15 +00:00
|
|
|
static slock_t *context_lock = NULL;
|
2016-11-06 12:42:34 +00:00
|
|
|
#endif
|
|
|
|
|
2017-05-20 12:31:07 +00:00
|
|
|
static gfx_ctx_driver_t current_video_context;
|
2017-05-18 01:37:02 +00:00
|
|
|
|
2017-05-20 12:31:07 +00:00
|
|
|
static void *video_context_data = NULL;
|
2017-05-08 23:25:59 +00:00
|
|
|
|
2017-10-12 16:38:07 +00:00
|
|
|
/**
|
|
|
|
* dynamic.c:dynamic_request_hw_context will try to set flag data when the context
|
|
|
|
* is in the middle of being rebuilt; in these cases we will save flag
|
2017-12-12 07:55:31 +00:00
|
|
|
* data and set this to true.
|
2017-10-12 16:38:07 +00:00
|
|
|
* When the context is reinit, it checks this, reads from
|
|
|
|
* deferred_flag_data and cleans it.
|
|
|
|
*
|
|
|
|
* TODO - Dirty hack, fix it better
|
|
|
|
*/
|
|
|
|
static bool deferred_video_context_driver_set_flags = false;
|
|
|
|
static gfx_ctx_flags_t deferred_flag_data = {0};
|
|
|
|
|
2017-09-18 02:46:17 +00:00
|
|
|
static enum gfx_ctx_api current_video_context_api = GFX_CTX_NONE;
|
|
|
|
|
2017-05-18 12:47:24 +00:00
|
|
|
shader_backend_t *current_shader = NULL;
|
|
|
|
void *shader_data = NULL;
|
|
|
|
|
2015-11-21 11:45:36 +00:00
|
|
|
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 },
|
2016-09-19 13:31:08 +00:00
|
|
|
{ "9:16", 0.5625f },
|
2015-11-21 11:45:36 +00:00
|
|
|
{ "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
|
2018-01-23 17:04:55 +00:00
|
|
|
#if defined(HAVE_D3D10)
|
|
|
|
&video_d3d10,
|
|
|
|
#endif
|
2018-01-21 03:10:45 +00:00
|
|
|
#if defined(HAVE_D3D11)
|
|
|
|
&video_d3d11,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_D3D12)
|
|
|
|
&video_d3d12,
|
|
|
|
#endif
|
2018-01-23 01:55:33 +00:00
|
|
|
#if defined(HAVE_D3D9)
|
|
|
|
&video_d3d9,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_D3D8)
|
|
|
|
&video_d3d8,
|
2015-01-12 17:26:46 +00:00
|
|
|
#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
|
2017-12-24 01:26:58 +00:00
|
|
|
#ifdef SWITCH
|
|
|
|
&video_switch,
|
|
|
|
#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
|
2016-10-27 00:34:10 +00:00
|
|
|
#ifdef WIIU
|
|
|
|
&video_wiiu,
|
|
|
|
#endif
|
2015-01-12 17:26:46 +00:00
|
|
|
#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,
|
2016-07-03 08:37:07 +00:00
|
|
|
#endif
|
2016-07-03 20:08:56 +00:00
|
|
|
#ifdef HAVE_PLAIN_DRM
|
2016-07-03 08:37:07 +00:00
|
|
|
&video_drm,
|
2016-09-07 11:38:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
&video_xshm,
|
2016-12-01 17:13:36 +00:00
|
|
|
#endif
|
2017-01-04 07:07:19 +00:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
|
|
&video_gdi,
|
|
|
|
#endif
|
2016-12-01 17:13:36 +00:00
|
|
|
#ifdef HAVE_CACA
|
|
|
|
&video_caca,
|
2017-01-21 22:41:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef DJGPP
|
|
|
|
&video_vga,
|
2015-01-12 17:26:46 +00:00
|
|
|
#endif
|
|
|
|
&video_null,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2017-05-08 23:25:59 +00:00
|
|
|
static const gfx_ctx_driver_t *gfx_ctx_drivers[] = {
|
|
|
|
#if defined(__CELLOS_LV2__)
|
|
|
|
&gfx_ctx_ps3,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_D3D)
|
|
|
|
&gfx_ctx_d3d,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_VIDEOCORE)
|
|
|
|
&gfx_ctx_videocore,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_MALI_FBDEV)
|
|
|
|
&gfx_ctx_mali_fbdev,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_VIVANTE_FBDEV)
|
|
|
|
&gfx_ctx_vivante_fbdev,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_OPENDINGUX_FBDEV)
|
|
|
|
&gfx_ctx_opendingux_fbdev,
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && (defined(HAVE_OPENGL) || defined(HAVE_VULKAN))
|
|
|
|
&gfx_ctx_wgl,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_WAYLAND)
|
|
|
|
&gfx_ctx_wayland,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_X11) && !defined(HAVE_OPENGLES)
|
|
|
|
#if defined(HAVE_OPENGL) || defined(HAVE_VULKAN)
|
|
|
|
&gfx_ctx_x,
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_X11) && defined(HAVE_OPENGL) && defined(HAVE_EGL)
|
|
|
|
&gfx_ctx_x_egl,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_KMS)
|
|
|
|
&gfx_ctx_drm,
|
|
|
|
#endif
|
|
|
|
#if defined(ANDROID)
|
|
|
|
&gfx_ctx_android,
|
|
|
|
#endif
|
|
|
|
#if defined(__QNX__)
|
|
|
|
&gfx_ctx_qnx,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_COCOA) || defined(HAVE_COCOATOUCH)
|
|
|
|
&gfx_ctx_cocoagl,
|
|
|
|
#endif
|
|
|
|
#if defined(__APPLE__) && !defined(TARGET_IPHONE_SIMULATOR) && !defined(TARGET_OS_IPHONE)
|
|
|
|
&gfx_ctx_cgl,
|
|
|
|
#endif
|
|
|
|
#if (defined(HAVE_SDL) || defined(HAVE_SDL2)) && defined(HAVE_OPENGL)
|
|
|
|
&gfx_ctx_sdl_gl,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OSMESA
|
|
|
|
&gfx_ctx_osmesa,
|
|
|
|
#endif
|
|
|
|
#ifdef EMSCRIPTEN
|
|
|
|
&gfx_ctx_emscripten,
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_VULKAN) && defined(HAVE_VULKAN_DISPLAY)
|
|
|
|
&gfx_ctx_khr_display,
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
|
|
&gfx_ctx_gdi,
|
|
|
|
#endif
|
|
|
|
&gfx_ctx_null,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-05-18 12:47:24 +00:00
|
|
|
static const shader_backend_t *shader_ctx_drivers[] = {
|
|
|
|
#ifdef HAVE_GLSL
|
|
|
|
&gl_glsl_backend,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_CG
|
|
|
|
&gl_cg_backend,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_HLSL
|
|
|
|
&hlsl_backend,
|
|
|
|
#endif
|
|
|
|
&shader_null_backend,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-06-12 13:45:43 +00:00
|
|
|
|
2017-11-07 06:56:18 +00:00
|
|
|
static const gl_renderchain_driver_t *renderchain_gl_drivers[] = {
|
2017-11-11 18:12:32 +00:00
|
|
|
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES)
|
2017-11-07 06:56:18 +00:00
|
|
|
&gl2_renderchain,
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
/* Stub functions */
|
|
|
|
|
2017-05-19 01:34:53 +00:00
|
|
|
static void update_window_title_null(void *data, void *data2)
|
2017-05-18 01:37:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-19 01:34:53 +00:00
|
|
|
static void swap_buffers_null(void *data, void *data2)
|
2017-05-18 01:37:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_metrics_null(void *data, enum display_metric_types type,
|
|
|
|
float *value)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-18 22:06:17 +00:00
|
|
|
static bool set_resize_null(void *a, unsigned b, unsigned c)
|
2017-05-18 01:37:02 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-20 15:47:56 +00:00
|
|
|
void video_driver_set_resize(unsigned width, unsigned height)
|
|
|
|
{
|
|
|
|
if (current_video_context.set_resize)
|
|
|
|
current_video_context.set_resize(video_context_data, width, height);
|
|
|
|
}
|
|
|
|
|
2015-01-12 17:26:46 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
2017-11-21 21:29:46 +00:00
|
|
|
#ifdef HAVE_VULKAN
|
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;
|
|
|
|
}
|
2017-11-21 21:29:46 +00:00
|
|
|
#endif
|
2016-02-16 19:24:00 +00:00
|
|
|
|
2017-12-29 12:00:24 +00:00
|
|
|
#if defined(HAVE_OPENGL)
|
2016-02-16 19:24:00 +00:00
|
|
|
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
|
|
|
}
|
2017-12-29 12:00:24 +00:00
|
|
|
#endif
|
2016-02-16 19:24:00 +00:00
|
|
|
|
2017-04-29 14:37:49 +00:00
|
|
|
bool *video_driver_get_threaded(void)
|
|
|
|
{
|
|
|
|
return &video_driver_threaded;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_threaded(bool val)
|
|
|
|
{
|
|
|
|
video_driver_threaded = val;
|
|
|
|
}
|
|
|
|
|
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
|
2016-10-18 02:04:40 +00:00
|
|
|
if (video_driver_is_threaded() && !force_nonthreaded_data)
|
2016-05-10 01:14:23 +00:00
|
|
|
return video_thread_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
|
|
|
}
|
|
|
|
|
2017-05-20 10:02:24 +00:00
|
|
|
static bool video_context_has_focus(void)
|
|
|
|
{
|
|
|
|
return current_video_context.has_focus(video_context_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool video_driver_has_focus(void)
|
|
|
|
{
|
|
|
|
return current_video->focus(video_driver_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool null_driver_has_focus(void)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-18 01:53:05 +00:00
|
|
|
static void video_context_driver_reset(void)
|
|
|
|
{
|
|
|
|
if (!current_video_context.get_metrics)
|
|
|
|
current_video_context.get_metrics = get_metrics_null;
|
|
|
|
|
|
|
|
if (!current_video_context.update_window_title)
|
|
|
|
current_video_context.update_window_title = update_window_title_null;
|
|
|
|
|
|
|
|
if (!current_video_context.set_resize)
|
|
|
|
current_video_context.set_resize = set_resize_null;
|
|
|
|
|
|
|
|
if (!current_video_context.swap_buffers)
|
|
|
|
current_video_context.swap_buffers = swap_buffers_null;
|
2017-05-20 10:02:24 +00:00
|
|
|
|
|
|
|
if (current_video_context.has_focus)
|
2017-06-06 01:49:21 +00:00
|
|
|
video_driver_cb_has_focus = video_context_has_focus;
|
2018-01-31 00:08:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
if(current_video_context_api == GFX_CTX_NONE)
|
|
|
|
{
|
|
|
|
const char *video_driver = video_driver_get_ident();
|
|
|
|
|
|
|
|
if(string_is_equal(video_driver, "d3d11"))
|
|
|
|
current_video_context_api = GFX_CTX_DIRECT3D11_API;
|
|
|
|
else if(string_is_equal(video_driver, "gx2"))
|
|
|
|
current_video_context_api = GFX_CTX_GX2_API;
|
|
|
|
}
|
2017-05-18 01:53:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_set(const gfx_ctx_driver_t *data)
|
|
|
|
{
|
|
|
|
if (!data)
|
|
|
|
return false;
|
2017-10-12 18:59:20 +00:00
|
|
|
current_video_context = *data;
|
2017-05-18 01:53:05 +00:00
|
|
|
video_context_driver_reset();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_context_driver_destroy(void)
|
|
|
|
{
|
|
|
|
current_video_context.init = NULL;
|
|
|
|
current_video_context.bind_api = NULL;
|
|
|
|
current_video_context.swap_interval = NULL;
|
|
|
|
current_video_context.set_video_mode = NULL;
|
|
|
|
current_video_context.get_video_size = NULL;
|
|
|
|
current_video_context.get_video_output_size = NULL;
|
|
|
|
current_video_context.get_video_output_prev = NULL;
|
|
|
|
current_video_context.get_video_output_next = NULL;
|
|
|
|
current_video_context.get_metrics = get_metrics_null;
|
|
|
|
current_video_context.translate_aspect = NULL;
|
|
|
|
current_video_context.update_window_title = update_window_title_null;
|
|
|
|
current_video_context.check_window = NULL;
|
|
|
|
current_video_context.set_resize = set_resize_null;
|
|
|
|
current_video_context.has_focus = NULL;
|
|
|
|
current_video_context.suppress_screensaver = NULL;
|
|
|
|
current_video_context.has_windowed = NULL;
|
|
|
|
current_video_context.swap_buffers = swap_buffers_null;
|
|
|
|
current_video_context.input_driver = NULL;
|
|
|
|
current_video_context.get_proc_address = NULL;
|
|
|
|
current_video_context.image_buffer_init = NULL;
|
|
|
|
current_video_context.image_buffer_write = NULL;
|
|
|
|
current_video_context.show_mouse = NULL;
|
|
|
|
current_video_context.ident = NULL;
|
|
|
|
current_video_context.get_flags = NULL;
|
|
|
|
current_video_context.set_flags = NULL;
|
|
|
|
current_video_context.bind_hw_render = NULL;
|
|
|
|
current_video_context.get_context_data = NULL;
|
|
|
|
current_video_context.make_current = NULL;
|
2018-01-31 00:08:36 +00:00
|
|
|
|
|
|
|
current_video_context_api = GFX_CTX_NONE;
|
2017-05-18 01:53:05 +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)
|
|
|
|
{
|
2017-01-23 14:24:33 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->get_current_framebuffer)
|
|
|
|
return video_driver_poke->get_current_framebuffer(video_driver_data);
|
|
|
|
return 0;
|
2015-01-19 03:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
retro_proc_address_t video_driver_get_proc_address(const char *sym)
|
|
|
|
{
|
2017-01-23 14:24:33 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->get_proc_address)
|
|
|
|
return video_driver_poke->get_proc_address(video_driver_data, sym);
|
|
|
|
return NULL;
|
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
|
|
|
{
|
2018-01-31 03:11:09 +00:00
|
|
|
bool ret = false;
|
2017-01-23 14:24:33 +00:00
|
|
|
if (current_video->set_shader)
|
2018-01-31 03:11:09 +00:00
|
|
|
ret = current_video->set_shader(video_driver_data, type, path);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
menu_shader_manager_free();
|
|
|
|
menu_shader_manager_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2015-02-10 16:20:02 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
static void video_driver_filter_free(void)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-01-25 14:22:12 +00:00
|
|
|
if (video_driver_state_filter)
|
|
|
|
rarch_softfilter_free(video_driver_state_filter);
|
|
|
|
video_driver_state_filter = NULL;
|
2017-12-12 07:55:31 +00:00
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
if (video_driver_state_buffer)
|
|
|
|
{
|
2015-11-12 13:57:26 +00:00
|
|
|
#ifdef _3DS
|
2017-01-25 14:22:12 +00:00
|
|
|
linearFree(video_driver_state_buffer);
|
2015-11-12 13:57:26 +00:00
|
|
|
#else
|
2017-01-25 14:22:12 +00:00
|
|
|
free(video_driver_state_buffer);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2017-01-25 14:22:12 +00:00
|
|
|
}
|
2016-11-03 22:03:50 +00:00
|
|
|
video_driver_state_buffer = NULL;
|
2017-01-25 14:22:12 +00:00
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
video_driver_state_scale = 0;
|
|
|
|
video_driver_state_out_bpp = 0;
|
|
|
|
video_driver_state_out_rgb32 = false;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2017-09-09 02:22:38 +00:00
|
|
|
static void video_driver_init_filter(enum retro_pixel_format colfmt_int)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-09-08 14:43:34 +00:00
|
|
|
unsigned pow2_x, pow2_y, maxsize;
|
2017-01-12 09:52:04 +00:00
|
|
|
void *buf = NULL;
|
|
|
|
settings_t *settings = config_get_ptr();
|
2017-09-09 02:11:46 +00:00
|
|
|
struct retro_game_geometry *geom = &video_driver_av_info.geometry;
|
2017-09-08 14:43:34 +00:00
|
|
|
unsigned width = geom->max_width;
|
|
|
|
unsigned height = geom->max_height;
|
2017-09-09 02:22:38 +00:00
|
|
|
/* Deprecated format. Gets pre-converted. */
|
2017-12-12 07:55:31 +00:00
|
|
|
enum retro_pixel_format colfmt =
|
2017-09-09 02:22:38 +00:00
|
|
|
(colfmt_int == RETRO_PIXEL_FORMAT_0RGB1555) ?
|
|
|
|
RETRO_PIXEL_FORMAT_RGB565 : colfmt_int;
|
|
|
|
|
|
|
|
if (video_driver_is_hw_context())
|
|
|
|
{
|
|
|
|
RARCH_WARN("Cannot use CPU filters when hardware rendering is used.\n");
|
|
|
|
return;
|
|
|
|
}
|
2015-09-28 14:20:26 +00:00
|
|
|
|
2017-09-08 14:43:34 +00:00
|
|
|
video_driver_state_filter = rarch_softfilter_new(
|
2017-04-28 22:39:29 +00:00
|
|
|
settings->paths.path_softfilter_plugin,
|
2015-01-26 19:30:48 +00:00
|
|
|
RARCH_SOFTFILTER_THREADS_AUTO, colfmt, width, height);
|
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
if (!video_driver_state_filter)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_ERR("[Video]: Failed to load filter.\n");
|
2015-01-26 19:30:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
rarch_softfilter_get_max_output_size(video_driver_state_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-11-03 22:03:50 +00:00
|
|
|
video_driver_state_scale = maxsize / RARCH_SCALE_BASE;
|
|
|
|
video_driver_state_out_rgb32 = rarch_softfilter_get_output_format(
|
2017-12-12 07:55:31 +00:00
|
|
|
video_driver_state_filter) ==
|
2017-01-12 09:52:04 +00:00
|
|
|
RETRO_PIXEL_FORMAT_XRGB8888;
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2017-01-12 09:52:04 +00:00
|
|
|
video_driver_state_out_bpp = video_driver_state_out_rgb32 ?
|
2017-12-12 07:55:31 +00:00
|
|
|
sizeof(uint32_t) :
|
2017-01-12 09:52:04 +00:00
|
|
|
sizeof(uint16_t);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
/* TODO: Aligned output. */
|
2015-11-12 13:57:26 +00:00
|
|
|
#ifdef _3DS
|
2017-01-25 14:22:12 +00:00
|
|
|
buf = linearMemAlign(
|
|
|
|
width * height * video_driver_state_out_bpp, 0x80);
|
2015-11-12 13:57:26 +00:00
|
|
|
#else
|
2017-01-25 14:22:12 +00:00
|
|
|
buf = malloc(
|
|
|
|
width * height * video_driver_state_out_bpp);
|
2015-11-12 13:57:26 +00:00
|
|
|
#endif
|
2016-12-27 13:48:04 +00:00
|
|
|
if (!buf)
|
2017-05-16 19:36:33 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Video]: Softfilter initialization failed.\n");
|
|
|
|
video_driver_filter_free();
|
|
|
|
return;
|
|
|
|
}
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
video_driver_state_buffer = buf;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 15:08:50 +00:00
|
|
|
static void video_driver_init_input(const input_driver_t *tmp)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
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-01-26 19:30:48 +00:00
|
|
|
/* Video driver didn't provide an input driver,
|
|
|
|
* so we use configured one. */
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Graphics driver did not initialize an input driver. Attempting to pick a suitable driver.\n");
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (tmp)
|
2015-11-29 18:07:02 +00:00
|
|
|
*input = tmp;
|
2015-01-26 19:30:48 +00:00
|
|
|
else
|
2016-05-08 21:12:04 +00:00
|
|
|
input_driver_find_driver();
|
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
|
|
|
|
2016-05-08 21:12:04 +00:00
|
|
|
if (input_driver_init())
|
2015-01-26 19:30:48 +00:00
|
|
|
return;
|
|
|
|
|
2015-11-20 20:07:15 +00:00
|
|
|
error:
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_ERR("[Video]: Cannot initialize input driver. Exiting ...\n");
|
2017-01-25 15:08:50 +00:00
|
|
|
retroarch_fail(1, "video_driver_init_input()");
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-20 20:05:27 +00:00
|
|
|
/**
|
2017-01-25 15:08:50 +00:00
|
|
|
* video_driver_monitor_compute_fps_statistics:
|
2015-11-20 20:05:27 +00:00
|
|
|
*
|
|
|
|
* Computes monitor FPS statistics.
|
|
|
|
**/
|
2017-01-25 15:08:50 +00:00
|
|
|
static void video_driver_monitor_compute_fps_statistics(void)
|
2015-11-20 20:05:27 +00:00
|
|
|
{
|
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
|
|
|
|
2017-12-12 07:55:31 +00:00
|
|
|
if (video_driver_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(
|
2017-04-18 04:02:43 +00:00
|
|
|
"[Video]: Does not have enough samples for monitor refresh rate estimation. Requires to run for at least %u frames.\n",
|
2015-11-20 20:05:27 +00:00
|
|
|
2 * MEASURE_FRAME_TIME_SAMPLES_COUNT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_monitor_fps_statistics(&avg_fps, &stddev, &samples))
|
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Average monitor Hz: %.6f Hz. (%.3f %% frame time deviation, based on %u last samples).\n",
|
2015-11-20 20:05:27 +00:00
|
|
|
avg_fps, 100.0 * stddev, samples);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
static void video_driver_pixel_converter_free(void)
|
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
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
static void video_driver_free_internal(void)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-01-25 14:22:12 +00:00
|
|
|
bool is_threaded = video_driver_is_threaded();
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2017-01-25 14:22:12 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_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())
|
2017-01-25 14:22:12 +00:00
|
|
|
video_driver_free_hw_context();
|
2015-12-28 20:34:57 +00:00
|
|
|
|
2015-01-26 19:30:48 +00:00
|
|
|
if (
|
2016-05-08 21:12:04 +00:00
|
|
|
!input_driver_owns_driver() &&
|
|
|
|
!input_driver_is_data_ptr_same(video_driver_data)
|
2015-03-23 06:15:41 +00:00
|
|
|
)
|
2016-05-08 21:12:04 +00:00
|
|
|
input_driver_deinit();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
|
|
|
if (
|
2017-01-25 14:22:12 +00:00
|
|
|
!video_driver_data_own
|
2017-12-12 07:55:31 +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
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
video_driver_pixel_converter_free();
|
|
|
|
video_driver_filter_free();
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_SHADER_DIR_DEINIT, NULL);
|
2015-11-20 18:01:13 +00:00
|
|
|
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-01-25 14:22:12 +00:00
|
|
|
if (is_threaded)
|
|
|
|
return;
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2017-01-25 14:22:12 +00:00
|
|
|
|
2017-01-25 15:08:50 +00:00
|
|
|
video_driver_monitor_compute_fps_statistics();
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
static bool video_driver_pixel_converter_init(unsigned size)
|
2015-11-23 12:05:50 +00:00
|
|
|
{
|
2016-05-08 12:00:51 +00:00
|
|
|
struct retro_hw_render_callback *hwr =
|
|
|
|
video_driver_get_hw_context();
|
2016-12-27 13:48:04 +00:00
|
|
|
void *scalr_out = NULL;
|
|
|
|
video_pixel_scaler_t *scalr = NULL;
|
|
|
|
struct scaler_ctx *scalr_ctx = NULL;
|
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. */
|
2016-11-06 12:57:27 +00:00
|
|
|
if (video_driver_pix_fmt != RETRO_PIXEL_FORMAT_0RGB1555)
|
2015-11-23 12:05:50 +00:00
|
|
|
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-12-27 13:48:04 +00:00
|
|
|
scalr = (video_pixel_scaler_t*)calloc(1, sizeof(*scalr));
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
if (!scalr)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
video_driver_scaler_ptr = scalr;
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
scalr_ctx = (struct scaler_ctx*)calloc(1, sizeof(*scalr_ctx));
|
|
|
|
|
|
|
|
if (!scalr_ctx)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
video_driver_scaler_ptr->scaler = scalr_ctx;
|
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
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
if (!scaler_ctx_gen_filter(scalr_ctx))
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
scalr_out = calloc(sizeof(uint16_t), size * size);
|
2015-11-23 12:05:50 +00:00
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
if (!scalr_out)
|
2015-11-23 12:05:50 +00:00
|
|
|
goto error;
|
|
|
|
|
2016-12-27 13:48:04 +00:00
|
|
|
video_driver_scaler_ptr->scaler_out = scalr_out;
|
|
|
|
|
2015-11-23 12:05:50 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
2017-01-25 14:22:12 +00:00
|
|
|
video_driver_pixel_converter_free();
|
|
|
|
video_driver_filter_free();
|
2015-11-23 12:05:50 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:10:59 +00:00
|
|
|
static bool video_driver_init_internal(bool *video_is_threaded)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-05-13 21:24:27 +00:00
|
|
|
video_info_t video;
|
2015-01-26 19:30:48 +00:00
|
|
|
unsigned max_dim, scale, width, height;
|
2017-06-18 16:49:49 +00:00
|
|
|
video_viewport_t *custom_vp = NULL;
|
2015-12-10 21:30:25 +00:00
|
|
|
const input_driver_t *tmp = NULL;
|
2016-09-06 06:38:26 +00:00
|
|
|
rarch_system_info_t *system = NULL;
|
2015-12-10 21:30:25 +00:00
|
|
|
static uint16_t dummy_pixels[32] = {0};
|
|
|
|
settings_t *settings = config_get_ptr();
|
2017-09-09 02:11:46 +00:00
|
|
|
struct retro_game_geometry *geom = &video_driver_av_info.geometry;
|
2017-01-12 09:52:04 +00:00
|
|
|
|
2017-04-28 22:39:29 +00:00
|
|
|
if (!string_is_empty(settings->paths.path_softfilter_plugin))
|
2017-09-09 02:22:38 +00:00
|
|
|
video_driver_init_filter(video_driver_pix_fmt);
|
2017-01-12 09:52:04 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_SHADER_DIR_INIT, NULL);
|
2015-01-26 19:30:48 +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
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
if (video_driver_state_filter)
|
|
|
|
scale = video_driver_state_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. */
|
2017-06-18 16:49:49 +00:00
|
|
|
custom_vp = video_viewport_get_custom();
|
|
|
|
|
2017-04-28 19:03:04 +00:00
|
|
|
if (settings->uints.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(
|
2017-04-28 19:03:04 +00:00
|
|
|
aspectratio_lut[settings->uints.video_aspect_ratio_idx].value);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2017-12-17 17:56:26 +00:00
|
|
|
if (settings->bools.video_fullscreen|| retroarch_is_forced_fullscreen())
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-28 19:03:04 +00:00
|
|
|
width = settings->uints.video_fullscreen_x;
|
|
|
|
height = settings->uints.video_fullscreen_y;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-28 19:03:04 +00:00
|
|
|
if(settings->uints.video_window_x || settings->uints.video_window_y)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-28 19:03:04 +00:00
|
|
|
width = settings->uints.video_window_x;
|
|
|
|
height = settings->uints.video_window_y;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
else
|
2016-11-24 00:43:50 +00:00
|
|
|
{
|
2017-04-27 22:53:06 +00:00
|
|
|
if (settings->bools.video_force_aspect)
|
2016-11-24 00:43:50 +00:00
|
|
|
{
|
|
|
|
/* Do rounding here to simplify integer scale correctness. */
|
|
|
|
unsigned base_width =
|
|
|
|
roundf(geom->base_height * video_driver_get_aspect_ratio());
|
2017-04-28 12:57:55 +00:00
|
|
|
width = roundf(base_width * settings->floats.video_scale);
|
2016-11-24 00:43:50 +00:00
|
|
|
}
|
|
|
|
else
|
2017-04-28 12:57:55 +00:00
|
|
|
width = roundf(geom->base_width * settings->floats.video_scale);
|
|
|
|
height = roundf(geom->base_height * settings->floats.video_scale);
|
2016-11-24 00:43:50 +00:00
|
|
|
}
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (width && height)
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Video @ %ux%u\n", width, height);
|
2015-01-26 19:30:48 +00:00
|
|
|
else
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Video @ fullscreen\n");
|
2015-01-26 19:30:48 +00:00
|
|
|
|
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
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
if (!video_driver_pixel_converter_init(RARCH_SCALE_BASE * scale))
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_ERR("[Video]: Failed to initialize pixel converter.\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 17:08:05 +00:00
|
|
|
video.width = width;
|
|
|
|
video.height = height;
|
2017-12-17 17:56:26 +00:00
|
|
|
video.fullscreen = settings->bools.video_fullscreen || retroarch_is_forced_fullscreen();
|
2017-05-15 03:06:23 +00:00
|
|
|
video.vsync = settings->bools.video_vsync && !rarch_ctl(RARCH_CTL_IS_NONBLOCK_FORCED, NULL);
|
2017-04-27 22:53:06 +00:00
|
|
|
video.force_aspect = settings->bools.video_force_aspect;
|
2017-05-13 21:24:27 +00:00
|
|
|
video.font_enable = settings->bools.video_font_enable;
|
|
|
|
video.swap_interval = settings->uints.video_swap_interval;
|
2015-01-26 19:30:48 +00:00
|
|
|
#ifdef GEKKO
|
2017-04-28 19:03:04 +00:00
|
|
|
video.viwidth = settings->uints.video_viwidth;
|
2017-04-28 13:29:20 +00:00
|
|
|
video.vfilter = settings->bools.video_vfilter;
|
2015-01-26 19:30:48 +00:00
|
|
|
#endif
|
2017-04-27 22:53:06 +00:00
|
|
|
video.smooth = settings->bools.video_smooth;
|
2017-01-10 17:08:05 +00:00
|
|
|
video.input_scale = scale;
|
|
|
|
video.rgb32 = video_driver_state_filter ?
|
2016-11-03 22:03:50 +00:00
|
|
|
video_driver_state_out_rgb32 :
|
2016-10-01 02:21:33 +00:00
|
|
|
(video_driver_pix_fmt == RETRO_PIXEL_FORMAT_XRGB8888);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-05-08 16:48:14 +00:00
|
|
|
/* Reset video frame count */
|
|
|
|
video_driver_frame_count = 0;
|
|
|
|
|
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
|
2017-04-29 14:52:52 +00:00
|
|
|
video.is_threaded = video_driver_is_threaded();
|
2017-04-29 15:10:59 +00:00
|
|
|
*video_is_threaded = video.is_threaded;
|
|
|
|
|
2017-04-29 14:52:52 +00:00
|
|
|
if (video.is_threaded)
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
/* Can't do hardware rendering with threaded driver currently. */
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Starting threaded video driver ...\n");
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-05-10 01:14:23 +00:00
|
|
|
if (!video_init_thread((const video_driver_t**)¤t_video,
|
2016-02-06 20:51:37 +00:00
|
|
|
&video_driver_data,
|
2015-11-29 18:07:02 +00:00
|
|
|
input_get_double_ptr(), input_driver_get_data_ptr(),
|
2017-01-16 17:02:28 +00:00
|
|
|
current_video, video))
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_ERR("[Video]: 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
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_ERR("[Video]: Cannot open video driver ... Exiting ...\n");
|
2015-11-20 17:55:01 +00:00
|
|
|
goto error;
|
2015-01-26 19:30:48 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 10:02:24 +00:00
|
|
|
if (current_video->focus)
|
|
|
|
video_driver_cb_has_focus = video_driver_has_focus;
|
|
|
|
|
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
|
|
|
|
2017-12-12 07:55:31 +00:00
|
|
|
if (current_video->viewport_info &&
|
2017-05-13 21:24:27 +00:00
|
|
|
(!custom_vp->width ||
|
|
|
|
!custom_vp->height))
|
2015-01-26 19:30:48 +00:00
|
|
|
{
|
|
|
|
/* 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
|
|
|
}
|
|
|
|
|
2017-04-23 14:41:26 +00:00
|
|
|
system = runloop_get_system_info();
|
2017-01-25 15:08:50 +00:00
|
|
|
|
2015-03-22 09:38:26 +00:00
|
|
|
video_driver_set_rotation(
|
2017-04-28 19:03:04 +00:00
|
|
|
(settings->uints.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,
|
2017-04-27 22:53:06 +00:00
|
|
|
settings->bools.ui_suspend_screensaver_enable);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2017-01-25 15:08:50 +00:00
|
|
|
video_driver_init_input(tmp);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_OVERLAY_DEINIT, NULL);
|
|
|
|
command_event(CMD_EVENT_OVERLAY_INIT, NULL);
|
2015-01-26 19:30:48 +00:00
|
|
|
|
2017-05-31 22:39:39 +00:00
|
|
|
if (!core_is_game_loaded())
|
|
|
|
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
|
|
|
|
2017-05-18 01:53:05 +00:00
|
|
|
video_context_driver_reset();
|
|
|
|
|
2017-12-11 23:12:32 +00:00
|
|
|
video_display_server_init();
|
|
|
|
|
2015-11-20 17:55:01 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
2016-05-09 05:09:26 +00:00
|
|
|
retroarch_fail(1, "init_video()");
|
2015-11-20 17:55:01 +00:00
|
|
|
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;
|
|
|
|
|
2016-05-08 18:32:46 +00:00
|
|
|
return video_context_driver_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
|
|
|
}
|
|
|
|
|
2017-01-19 15:30:40 +00:00
|
|
|
void video_driver_set_osd_msg(const char *msg, const void *data, void *font)
|
2015-03-22 17:48:24 +00:00
|
|
|
{
|
2017-04-23 20:20:11 +00:00
|
|
|
video_frame_info_t video_info;
|
|
|
|
video_driver_build_info(&video_info);
|
2015-12-04 00:21:46 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->set_osd_msg)
|
2017-04-23 20:20:11 +00:00
|
|
|
video_driver_poke->set_osd_msg(video_driver_data, &video_info, msg, data, 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)
|
|
|
|
{
|
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
|
|
|
}
|
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)
|
|
|
|
{
|
2017-01-25 15:33:44 +00:00
|
|
|
if (data)
|
|
|
|
frame_cache_data = data;
|
|
|
|
frame_cache_width = width;
|
|
|
|
frame_cache_height = height;
|
|
|
|
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)
|
2016-10-01 02:24:57 +00:00
|
|
|
*data = frame_cache_data;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (width)
|
2016-10-01 02:24:57 +00:00
|
|
|
*width = frame_cache_width;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (height)
|
2016-10-01 02:24:57 +00:00
|
|
|
*height = frame_cache_height;
|
2015-05-20 19:36:08 +00:00
|
|
|
if (pitch)
|
2016-10-01 02:24:57 +00:00
|
|
|
*pitch = 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)
|
|
|
|
{
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-04-29 15:38:47 +00:00
|
|
|
bool is_threaded = video_driver_is_threaded();
|
|
|
|
video_driver_threaded_lock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2015-05-19 22:29:46 +00:00
|
|
|
if (width)
|
2016-10-01 02:21:33 +00:00
|
|
|
*width = video_driver_width;
|
2015-05-19 22:29:46 +00:00
|
|
|
if (height)
|
2016-10-01 02:21:33 +00:00
|
|
|
*height = video_driver_height;
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-04-29 15:38:47 +00:00
|
|
|
video_driver_threaded_unlock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
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
|
|
|
{
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-04-29 15:38:47 +00:00
|
|
|
bool is_threaded = video_driver_is_threaded();
|
|
|
|
video_driver_threaded_lock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2015-11-23 11:54:15 +00:00
|
|
|
if (width)
|
2016-10-01 02:21:33 +00:00
|
|
|
video_driver_width = *width;
|
2015-11-23 11:54:15 +00:00
|
|
|
if (height)
|
2016-10-01 02:21:33 +00:00
|
|
|
video_driver_height = *height;
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-04-29 15:38:47 +00:00
|
|
|
video_driver_threaded_unlock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
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);
|
2016-12-22 22:36:11 +00:00
|
|
|
runloop_msg_queue_push(msg, 1, 180, false);
|
2015-05-20 03:35:41 +00:00
|
|
|
RARCH_LOG("%s\n", msg);
|
|
|
|
|
2017-04-23 15:44:24 +00:00
|
|
|
configuration_set_float(settings,
|
2017-04-28 12:57:55 +00:00
|
|
|
settings->floats.video_refresh_rate,
|
2017-04-23 15:44:24 +00:00
|
|
|
hz);
|
2015-05-20 03:35:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2017-09-08 22:20:39 +00:00
|
|
|
unsigned i;
|
2018-02-02 21:50:07 +00:00
|
|
|
retro_time_t accum = 0;
|
|
|
|
retro_time_t avg = 0;
|
|
|
|
retro_time_t accum_var = 0;
|
|
|
|
unsigned samples = 0;
|
|
|
|
|
2017-04-29 16:33:50 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
if (video_driver_is_threaded())
|
|
|
|
return false;
|
|
|
|
#endif
|
2015-05-20 03:35:41 +00:00
|
|
|
|
2018-02-02 21:50:07 +00:00
|
|
|
samples = MIN(MEASURE_FRAME_TIME_SAMPLES_COUNT,
|
|
|
|
(unsigned)video_driver_frame_time_count);
|
|
|
|
|
2017-04-29 16:33:50 +00:00
|
|
|
if (samples < 2)
|
2015-05-20 03:35:41 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
/* Measure statistics on frame time (microsecs), *not* FPS. */
|
|
|
|
for (i = 0; i < samples; i++)
|
2018-02-02 21:50:07 +00:00
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
accum += video_driver_frame_time_samples[i];
|
2015-05-20 03:35:41 +00:00
|
|
|
#if 0
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Interval #%u: %d usec / frame.\n",
|
2016-11-03 22:03:50 +00:00
|
|
|
i, (int)frame_time_samples[i]);
|
2015-05-20 03:35:41 +00:00
|
|
|
#endif
|
2018-02-02 21:50:07 +00:00
|
|
|
}
|
2015-05-20 03:35:41 +00:00
|
|
|
|
|
|
|
avg = accum / samples;
|
|
|
|
|
|
|
|
/* Drop first measurement. It is likely to be bad. */
|
|
|
|
for (i = 0; i < samples; i++)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
retro_time_t diff = video_driver_frame_time_samples[i] - avg;
|
2018-02-02 21:50:07 +00:00
|
|
|
accum_var += diff * diff;
|
2015-05-20 03:35:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*deviation = sqrt((double)accum_var / (samples - 1)) / avg;
|
|
|
|
*refresh_rate = 1000000.0 / avg;
|
|
|
|
*sample_points = samples;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-20 16:24:45 +00:00
|
|
|
float video_driver_get_aspect_ratio(void)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
return video_driver_aspect_ratio;
|
2015-05-20 16:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_aspect_ratio_value(float value)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
video_driver_aspect_ratio = value;
|
2015-05-20 16:24:45 +00:00
|
|
|
}
|
2015-05-20 17:56:12 +00:00
|
|
|
|
2017-01-09 14:42:14 +00:00
|
|
|
static bool video_driver_frame_filter(
|
|
|
|
const void *data,
|
2017-01-19 22:12:18 +00:00
|
|
|
video_frame_info_t *video_info,
|
2015-05-20 18:49:52 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
size_t pitch,
|
|
|
|
unsigned *output_width, unsigned *output_height,
|
|
|
|
unsigned *output_pitch)
|
|
|
|
{
|
2016-11-03 22:03:50 +00:00
|
|
|
rarch_softfilter_get_output_size(video_driver_state_filter,
|
2015-05-20 18:49:52 +00:00
|
|
|
output_width, output_height, width, height);
|
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
*output_pitch = (*output_width) * video_driver_state_out_bpp;
|
2015-05-20 18:49:52 +00:00
|
|
|
|
2016-11-03 22:03:50 +00:00
|
|
|
rarch_softfilter_process(video_driver_state_filter,
|
|
|
|
video_driver_state_buffer, *output_pitch,
|
2015-05-20 18:49:52 +00:00
|
|
|
data, width, height, pitch);
|
|
|
|
|
2017-01-19 22:12:18 +00:00
|
|
|
if (video_info->post_filter_record && recording_data)
|
2016-11-03 22:03:50 +00:00
|
|
|
recording_dump_frame(video_driver_state_buffer,
|
2017-01-22 17:17:48 +00:00
|
|
|
*output_width, *output_height, *output_pitch,
|
|
|
|
video_info->runloop_is_idle);
|
2015-05-20 18:49:52 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
rarch_softfilter_t *video_driver_frame_filter_get_ptr(void)
|
|
|
|
{
|
2016-11-03 22:03:50 +00:00
|
|
|
return video_driver_state_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)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
return video_driver_pix_fmt;
|
2015-05-20 18:59:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_pixel_format(enum retro_pixel_format fmt)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
video_driver_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.
|
|
|
|
**/
|
2016-10-24 22:42:14 +00:00
|
|
|
bool video_driver_cached_frame(void)
|
2015-11-20 14:34:10 +00:00
|
|
|
{
|
2016-01-27 03:49:38 +00:00
|
|
|
void *recording = recording_driver_get_data_ptr();
|
2015-11-20 14:34:10 +00:00
|
|
|
|
|
|
|
/* Cannot allow recording when pushing duped frames. */
|
2016-12-05 01:02:59 +00:00
|
|
|
recording_data = NULL;
|
2015-11-20 14:34:10 +00:00
|
|
|
|
2017-05-21 07:30:32 +00:00
|
|
|
retro_ctx.frame_cb(
|
2017-12-12 07:55:31 +00:00
|
|
|
(frame_cache_data != RETRO_HW_FRAME_BUFFER_VALID)
|
2017-05-21 07:30:32 +00:00
|
|
|
? frame_cache_data : NULL,
|
|
|
|
frame_cache_width,
|
|
|
|
frame_cache_height, frame_cache_pitch);
|
2015-11-20 14:34:10 +00:00
|
|
|
|
2016-12-05 01:02:59 +00:00
|
|
|
recording_data = 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;
|
2015-12-10 21:30:25 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2017-04-28 12:57:55 +00:00
|
|
|
float video_refresh_rate = settings->floats.video_refresh_rate;
|
2017-09-09 02:11:46 +00:00
|
|
|
const struct retro_system_timing *info = (const struct retro_system_timing*)&video_driver_av_info.timing;
|
2015-11-20 19:47:47 +00:00
|
|
|
|
2017-05-15 03:06:23 +00:00
|
|
|
rarch_ctl(RARCH_CTL_UNSET_NONBLOCK_FORCED, NULL);
|
2015-11-20 19:47:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!info || info->fps <= 0.0)
|
|
|
|
return;
|
|
|
|
|
2017-04-28 12:57:55 +00:00
|
|
|
timing_skew = fabs(1.0f - info->fps / video_refresh_rate);
|
2015-11-20 19:47:47 +00:00
|
|
|
|
|
|
|
/* We don't want to adjust pitch too much. If we have extreme cases,
|
|
|
|
* just don't readjust at all. */
|
2017-04-28 12:57:55 +00:00
|
|
|
if (timing_skew <= settings->floats.audio_max_timing_skew)
|
2015-11-20 19:47:47 +00:00
|
|
|
return;
|
|
|
|
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Timings deviate too much. Will not adjust. (Display = %.2f Hz, Game = %.2f Hz)\n",
|
2017-04-28 12:57:55 +00:00
|
|
|
video_refresh_rate,
|
2015-11-20 19:47:47 +00:00
|
|
|
(float)info->fps);
|
|
|
|
|
2017-04-28 12:57:55 +00:00
|
|
|
if (info->fps <= video_refresh_rate)
|
2015-11-20 19:47:47 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* We won't be able to do VSync reliably when game FPS > monitor FPS. */
|
2017-05-15 03:06:23 +00:00
|
|
|
rarch_ctl(RARCH_CTL_SET_NONBLOCK_FORCED, NULL);
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Game FPS > Monitor FPS. Cannot rely on VSync.\n");
|
2015-11-20 19:47:47 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2017-08-13 16:05:51 +00:00
|
|
|
#if defined(GEKKO) || defined(__CELLOS_LV2__)
|
|
|
|
CONFIG_ACTION(
|
|
|
|
list, list_info,
|
|
|
|
MENU_ENUM_LABEL_SCREEN_RESOLUTION,
|
|
|
|
MENU_ENUM_LABEL_VALUE_SCREEN_RESOLUTION,
|
|
|
|
group_info,
|
|
|
|
subgroup_info,
|
|
|
|
parent_group);
|
|
|
|
#endif
|
2015-11-21 10:22:34 +00:00
|
|
|
#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,
|
2016-10-26 03:04:24 +00:00
|
|
|
MENU_ENUM_LABEL_PAL60_ENABLE,
|
|
|
|
MENU_ENUM_LABEL_VALUE_PAL60_ENABLE,
|
2015-11-21 10:22:34 +00:00
|
|
|
false,
|
2016-10-26 03:04:24 +00:00
|
|
|
MENU_ENUM_LABEL_VALUE_OFF,
|
|
|
|
MENU_ENUM_LABEL_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,
|
2016-06-15 15:40:09 +00:00
|
|
|
general_read_handler,
|
|
|
|
SD_FLAG_NONE);
|
2015-11-21 10:22:34 +00:00
|
|
|
#endif
|
2016-06-05 16:57:29 +00:00
|
|
|
#if defined(GEKKO) || defined(_XBOX360)
|
2015-11-21 10:22:34 +00:00
|
|
|
CONFIG_UINT(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
|
|
|
&global->console.screen.gamma_correction,
|
2016-10-26 04:04:42 +00:00
|
|
|
MENU_ENUM_LABEL_VIDEO_GAMMA,
|
|
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_GAMMA,
|
2015-11-21 10:22:34 +00:00
|
|
|
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,
|
2016-05-09 18:51:53 +00:00
|
|
|
CMD_EVENT_VIDEO_APPLY_STATE_CHANGES);
|
2015-11-21 10:22:34 +00:00
|
|
|
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,
|
2016-10-26 03:04:24 +00:00
|
|
|
MENU_ENUM_LABEL_VIDEO_SOFT_FILTER,
|
|
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_SOFT_FILTER,
|
2015-11-21 10:22:34 +00:00
|
|
|
false,
|
2016-10-26 03:04:24 +00:00
|
|
|
MENU_ENUM_LABEL_VALUE_OFF,
|
|
|
|
MENU_ENUM_LABEL_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,
|
2016-06-15 15:40:09 +00:00
|
|
|
general_read_handler,
|
|
|
|
SD_FLAG_NONE);
|
2015-11-21 10:22:34 +00:00
|
|
|
menu_settings_list_current_add_cmd(
|
|
|
|
list,
|
|
|
|
list_info,
|
2016-05-09 18:51:53 +00:00
|
|
|
CMD_EVENT_VIDEO_APPLY_STATE_CHANGES);
|
2015-11-21 10:22:34 +00:00
|
|
|
#endif
|
|
|
|
#ifdef _XBOX1
|
|
|
|
CONFIG_UINT(
|
2015-11-21 15:32:22 +00:00
|
|
|
list, list_info,
|
2016-12-02 00:04:46 +00:00
|
|
|
&global->console.screen.flicker_filter_index,
|
2016-10-26 04:04:42 +00:00
|
|
|
MENU_ENUM_LABEL_VIDEO_FILTER_FLICKER,
|
|
|
|
MENU_ENUM_LABEL_VALUE_VIDEO_FILTER_FLICKER,
|
2015-11-21 10:22:34 +00:00
|
|
|
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-11-04 13:16:55 +00:00
|
|
|
static void video_driver_lock_new(void)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
|
|
|
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);
|
2017-01-18 00:09:15 +00:00
|
|
|
|
|
|
|
if (!context_lock)
|
|
|
|
context_lock = slock_new();
|
|
|
|
retro_assert(context_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)
|
|
|
|
{
|
2017-12-11 23:12:32 +00:00
|
|
|
video_display_server_destroy();
|
2017-05-20 10:02:24 +00:00
|
|
|
video_driver_cb_has_focus = null_driver_has_focus;
|
2016-05-08 12:00:51 +00:00
|
|
|
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)
|
2016-10-01 02:24:57 +00:00
|
|
|
frame_cache_data = data;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
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();
|
2017-04-27 22:53:06 +00:00
|
|
|
return settings->bools.video_gpu_record && current_video->read_viewport;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
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();
|
2017-04-27 22:53:06 +00:00
|
|
|
return (settings->bools.video_gpu_screenshot ||
|
2016-05-08 12:00:51 +00:00
|
|
|
(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)
|
|
|
|
{
|
2017-10-02 20:06:32 +00:00
|
|
|
if (current_video->read_frame_raw)
|
|
|
|
return true;
|
|
|
|
return false;
|
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_set_viewport_config(void)
|
|
|
|
{
|
2017-05-18 07:44:51 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2016-03-24 02:06:03 +00:00
|
|
|
|
2017-04-28 12:57:55 +00:00
|
|
|
if (settings->floats.video_aspect_ratio < 0.0f)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
2017-09-09 02:11:46 +00:00
|
|
|
struct retro_game_geometry *geom = &video_driver_av_info.geometry;
|
2015-12-04 00:21:46 +00:00
|
|
|
|
2017-04-27 22:53:06 +00:00
|
|
|
if (geom->aspect_ratio > 0.0f && settings->bools.video_aspect_ratio_auto)
|
2016-05-08 12:00:51 +00:00
|
|
|
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;
|
2017-12-12 07:55:31 +00:00
|
|
|
aspectratio_lut[ASPECT_RATIO_CONFIG].value =
|
2016-05-08 12:00:51 +00:00
|
|
|
(float)base_width / base_height; /* 1:1 PAR. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-12 07:55:31 +00:00
|
|
|
aspectratio_lut[ASPECT_RATIO_CONFIG].value =
|
2017-04-28 12:57:55 +00:00
|
|
|
settings->floats.video_aspect_ratio;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
}
|
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;
|
2017-09-09 02:11:46 +00:00
|
|
|
struct retro_game_geometry *geom = &video_driver_av_info.geometry;
|
|
|
|
unsigned width = geom->base_width;
|
|
|
|
unsigned 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),
|
2016-09-19 13:31:08 +00:00
|
|
|
"1:1 PAR (%u:%u DAR)", aspect_x, aspect_y);
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
aspectratio_lut[ASPECT_RATIO_SQUARE].value = (float)aspect_x / aspect_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_viewport_core(void)
|
|
|
|
{
|
2017-09-09 02:11:46 +00:00
|
|
|
struct retro_game_geometry *geom = &video_driver_av_info.geometry;
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
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
|
2017-12-12 07:55:31 +00:00
|
|
|
aspectratio_lut[ASPECT_RATIO_CORE].value =
|
2016-05-08 12:00:51 +00:00
|
|
|
(float)geom->base_width / geom->base_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_reset_custom_viewport(void)
|
|
|
|
{
|
2017-06-18 16:49:49 +00:00
|
|
|
struct video_viewport *custom_vp = video_viewport_get_custom();
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
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)
|
2016-05-08 18:32:46 +00:00
|
|
|
return video_context_driver_get_video_output_next();
|
2016-05-08 12:00:51 +00:00
|
|
|
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)
|
2016-05-08 18:32:46 +00:00
|
|
|
return video_context_driver_get_video_output_prev();
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_poke->get_video_output_prev(video_driver_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-04-29 15:10:59 +00:00
|
|
|
bool video_driver_init(bool *video_is_threaded)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
|
|
|
video_driver_lock_new();
|
2017-09-08 14:43:34 +00:00
|
|
|
video_driver_filter_free();
|
2017-04-29 15:10:59 +00:00
|
|
|
return video_driver_init_internal(video_is_threaded);
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_destroy_data(void)
|
|
|
|
{
|
|
|
|
video_driver_data = NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
void video_driver_free(void)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
2017-01-25 14:22:12 +00:00
|
|
|
video_driver_free_internal();
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_lock_free();
|
|
|
|
video_driver_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_monitor_reset(void)
|
|
|
|
{
|
2016-10-01 02:21:33 +00:00
|
|
|
video_driver_frame_time_count = 0;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_set_aspect_ratio(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
2018-01-24 14:00:32 +00:00
|
|
|
|
|
|
|
switch (settings->uints.video_aspect_ratio_idx)
|
|
|
|
{
|
|
|
|
case ASPECT_RATIO_SQUARE:
|
|
|
|
video_driver_set_viewport_square_pixel();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ASPECT_RATIO_CORE:
|
|
|
|
video_driver_set_viewport_core();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ASPECT_RATIO_CONFIG:
|
|
|
|
video_driver_set_viewport_config();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
video_driver_set_aspect_ratio_value(
|
|
|
|
aspectratio_lut[settings->uints.video_aspect_ratio_idx].value);
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (!video_driver_poke || !video_driver_poke->set_aspect_ratio)
|
|
|
|
return;
|
|
|
|
video_driver_poke->set_aspect_ratio(
|
2017-04-28 19:03:04 +00:00
|
|
|
video_driver_data, settings->uints.video_aspect_ratio_idx);
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
2018-01-24 14:00:32 +00:00
|
|
|
void video_driver_update_viewport(struct video_viewport* vp, bool force_full, bool keep_aspect)
|
|
|
|
{
|
|
|
|
gfx_ctx_aspect_t aspect_data;
|
|
|
|
float device_aspect = (float)vp->full_width / vp->full_height;
|
|
|
|
settings_t* settings = config_get_ptr();
|
|
|
|
|
|
|
|
aspect_data.aspect = &device_aspect;
|
|
|
|
aspect_data.width = vp->full_width;
|
|
|
|
aspect_data.height = vp->full_height;
|
|
|
|
|
|
|
|
video_context_driver_translate_aspect(&aspect_data);
|
|
|
|
|
|
|
|
vp->x = 0;
|
|
|
|
vp->y = 0;
|
|
|
|
vp->width = vp->full_width;
|
|
|
|
vp->height = vp->full_height;
|
|
|
|
|
|
|
|
if (settings->bools.video_scale_integer && !force_full)
|
|
|
|
{
|
|
|
|
video_viewport_get_scaled_integer(
|
|
|
|
vp, vp->full_width, vp->full_height, video_driver_get_aspect_ratio(), keep_aspect);
|
|
|
|
}
|
|
|
|
else if (keep_aspect && !force_full)
|
|
|
|
{
|
|
|
|
float desired_aspect = video_driver_get_aspect_ratio();
|
|
|
|
|
|
|
|
#if defined(HAVE_MENU)
|
|
|
|
if (settings->uints.video_aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
|
|
|
|
{
|
|
|
|
const struct video_viewport* custom = video_viewport_get_custom();
|
|
|
|
|
|
|
|
vp->x = custom->x;
|
|
|
|
vp->y = custom->y;
|
|
|
|
vp->width = custom->width;
|
|
|
|
vp->height = custom->height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
float delta;
|
|
|
|
|
|
|
|
if (fabsf(device_aspect - desired_aspect) < 0.0001f)
|
|
|
|
{
|
|
|
|
/* If the aspect ratios of screen and desired aspect
|
|
|
|
* ratio are sufficiently equal (floating point stuff),
|
|
|
|
* assume they are actually equal.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
else if (device_aspect > desired_aspect)
|
|
|
|
{
|
|
|
|
delta = (desired_aspect / device_aspect - 1.0f) / 2.0f + 0.5f;
|
|
|
|
vp->x = (int)roundf(vp->full_width * (0.5f - delta));
|
|
|
|
vp->width = (unsigned)roundf(2.0f * vp->full_width * delta);
|
|
|
|
vp->y = 0;
|
|
|
|
vp->height = vp->full_height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vp->x = 0;
|
|
|
|
vp->width = vp->full_width;
|
|
|
|
delta = (device_aspect / desired_aspect - 1.0f) / 2.0f + 0.5f;
|
|
|
|
vp->y = (int)roundf(vp->full_height * (0.5f - delta));
|
|
|
|
vp->height = (unsigned)roundf(2.0f * vp->full_height * delta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(RARCH_MOBILE)
|
|
|
|
/* In portrait mode, we want viewport to gravitate to top of screen. */
|
|
|
|
if (device_aspect < 1.0f)
|
2018-01-24 21:16:06 +00:00
|
|
|
vp->y = 0;
|
2018-01-24 20:38:32 +00:00
|
|
|
#endif
|
2018-01-24 14:00:32 +00:00
|
|
|
}
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
void video_driver_show_mouse(void)
|
|
|
|
{
|
2016-11-21 12:31:04 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->show_mouse)
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_poke->show_mouse(video_driver_data, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_driver_hide_mouse(void)
|
|
|
|
{
|
2016-11-21 12:31:04 +00:00
|
|
|
if (video_driver_poke && video_driver_poke->show_mouse)
|
2016-05-08 12:00:51 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
driver_ctx_info_t drv;
|
2016-10-18 02:04:40 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
if (video_driver_is_hw_context())
|
|
|
|
{
|
|
|
|
struct retro_hw_render_callback *hwr = video_driver_get_hw_context();
|
|
|
|
|
2016-05-09 03:50:08 +00:00
|
|
|
current_video = NULL;
|
|
|
|
|
2018-01-02 05:41:52 +00:00
|
|
|
(void)hwr;
|
|
|
|
|
2017-11-13 05:20:30 +00:00
|
|
|
#if defined(HAVE_VULKAN)
|
2016-05-08 12:00:51 +00:00
|
|
|
if (hwr && hw_render_context_is_vulkan(hwr->context_type))
|
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Using HW render, Vulkan driver forced.\n");
|
2016-05-08 12:00:51 +00:00
|
|
|
current_video = &video_vulkan;
|
|
|
|
}
|
2017-11-13 05:20:30 +00:00
|
|
|
#endif
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2017-11-13 05:20:30 +00:00
|
|
|
#if defined(HAVE_OPENGL)
|
2016-05-08 12:00:51 +00:00
|
|
|
if (hwr && hw_render_context_is_gl(hwr->context_type))
|
|
|
|
{
|
2017-04-18 04:02:43 +00:00
|
|
|
RARCH_LOG("[Video]: Using HW render, OpenGL driver forced.\n");
|
2016-05-08 12:00:51 +00:00
|
|
|
current_video = &video_gl;
|
|
|
|
}
|
2017-11-13 05:20:30 +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";
|
2017-04-28 20:59:13 +00:00
|
|
|
drv.s = settings->arrays.video_driver;
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
driver_ctl(RARCH_DRIVER_CTL_FIND_INDEX, &drv);
|
|
|
|
|
2017-02-26 20:46:19 +00:00
|
|
|
i = (int)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
|
|
|
|
{
|
2018-01-17 05:28:26 +00:00
|
|
|
if (verbosity_is_enabled())
|
|
|
|
{
|
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any video driver named \"%s\"\n",
|
|
|
|
settings->arrays.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");
|
|
|
|
}
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
current_video = (video_driver_t*)video_driver_find_handle(0);
|
|
|
|
|
|
|
|
if (!current_video)
|
2016-05-09 05:09:26 +00:00
|
|
|
retroarch_fail(1, "find_video_driver()");
|
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
|
|
|
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
|
|
|
|
2017-01-22 17:17:48 +00:00
|
|
|
bool video_driver_read_viewport(uint8_t *buffer, bool is_idle)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
2016-11-21 12:17:28 +00:00
|
|
|
if ( current_video->read_viewport
|
2017-01-22 17:17:48 +00:00
|
|
|
&& current_video->read_viewport(video_driver_data, buffer, is_idle))
|
2016-11-21 12:17:28 +00:00
|
|
|
return true;
|
2016-03-04 18:12:54 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-11-21 08:54:55 +00:00
|
|
|
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_frame_filter_alive(void)
|
|
|
|
{
|
2016-11-03 22:03:50 +00:00
|
|
|
return !!video_driver_state_filter;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
2015-11-21 08:54:55 +00:00
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
bool video_driver_frame_filter_is_32bit(void)
|
|
|
|
{
|
2016-11-03 22:03:50 +00:00
|
|
|
return video_driver_state_out_rgb32;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
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)
|
|
|
|
{
|
2016-05-24 21:53:35 +00:00
|
|
|
bool tmp_bool = false;
|
2016-05-08 12:00:51 +00:00
|
|
|
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");
|
2016-05-24 21:53:35 +00:00
|
|
|
|
|
|
|
if (config_get_bool(conf, "flicker_filter_enable",
|
|
|
|
&tmp_bool))
|
|
|
|
global->console.flickerfilter_enable = tmp_bool;
|
|
|
|
|
|
|
|
if (config_get_bool(conf, "soft_filter_enable",
|
|
|
|
&tmp_bool))
|
|
|
|
global->console.softfilter_enable = tmp_bool;
|
2016-05-08 12:00:51 +00:00
|
|
|
|
|
|
|
CONFIG_GET_INT_BASE(conf, global,
|
|
|
|
console.screen.soft_filter_index,
|
|
|
|
"soft_filter_index");
|
2017-12-12 07:55:31 +00:00
|
|
|
CONFIG_GET_INT_BASE(conf, global,
|
2016-05-08 12:00:51 +00:00
|
|
|
console.screen.resolutions.current.id,
|
|
|
|
"current_resolution_id");
|
2017-12-12 07:55:31 +00:00
|
|
|
CONFIG_GET_INT_BASE(conf, global,
|
2016-05-08 12:00:51 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-11-06 13:18:29 +00:00
|
|
|
void video_driver_reinit(void)
|
|
|
|
{
|
|
|
|
struct retro_hw_render_callback *hwr =
|
|
|
|
video_driver_get_hw_context();
|
|
|
|
|
|
|
|
if (hwr->cache_context)
|
2017-01-18 00:09:15 +00:00
|
|
|
video_driver_cache_context = true;
|
2016-11-06 13:18:29 +00:00
|
|
|
else
|
|
|
|
video_driver_cache_context = false;
|
|
|
|
|
|
|
|
video_driver_cache_context_ack = false;
|
|
|
|
command_event(CMD_EVENT_RESET_CONTEXT, NULL);
|
|
|
|
video_driver_cache_context = false;
|
|
|
|
}
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
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)
|
|
|
|
{
|
2017-01-18 00:09:15 +00:00
|
|
|
bool is_hw_context = false;
|
|
|
|
|
|
|
|
video_driver_context_lock();
|
|
|
|
is_hw_context = (hw_render.context_type != RETRO_HW_CONTEXT_NONE);
|
|
|
|
video_driver_context_unlock();
|
|
|
|
|
|
|
|
return is_hw_context;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 14:22:12 +00:00
|
|
|
void video_driver_free_hw_context(void)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
2017-01-18 00:09:15 +00:00
|
|
|
video_driver_context_lock();
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
if (hw_render.context_destroy)
|
|
|
|
hw_render.context_destroy();
|
|
|
|
|
|
|
|
memset(&hw_render, 0, sizeof(hw_render));
|
2017-01-18 00:09:15 +00:00
|
|
|
|
|
|
|
video_driver_context_unlock();
|
|
|
|
|
2016-06-25 19:00:58 +00:00
|
|
|
hw_render_context_negotiation = NULL;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct retro_hw_render_callback *video_driver_get_hw_context(void)
|
|
|
|
{
|
|
|
|
return &hw_render;
|
|
|
|
}
|
|
|
|
|
2016-09-29 08:27:49 +00:00
|
|
|
const struct retro_hw_render_context_negotiation_interface *
|
|
|
|
video_driver_get_context_negotiation_interface(void)
|
2016-06-25 19:00:58 +00:00
|
|
|
{
|
|
|
|
return hw_render_context_negotiation;
|
|
|
|
}
|
|
|
|
|
2016-09-29 08:27:49 +00:00
|
|
|
void video_driver_set_context_negotiation_interface(
|
|
|
|
const struct retro_hw_render_context_negotiation_interface *iface)
|
2016-06-25 19:00:58 +00:00
|
|
|
{
|
|
|
|
hw_render_context_negotiation = iface;
|
|
|
|
}
|
|
|
|
|
2016-05-08 12:00:51 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_driver_is_active(void)
|
|
|
|
{
|
|
|
|
return video_driver_active;
|
|
|
|
}
|
|
|
|
|
2017-01-25 14:30:51 +00:00
|
|
|
void video_driver_get_record_status(
|
2017-12-12 07:55:31 +00:00
|
|
|
bool *has_gpu_record,
|
2017-01-25 14:30:51 +00:00
|
|
|
uint8_t **gpu_buf)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
2017-01-25 14:30:51 +00:00
|
|
|
*gpu_buf = video_driver_record_gpu_buffer;
|
|
|
|
*has_gpu_record = video_driver_record_gpu_buffer != NULL;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 (
|
2017-12-12 07:55:31 +00:00
|
|
|
video_driver_poke
|
2016-11-21 12:17:28 +00:00
|
|
|
&& video_driver_poke->get_current_software_framebuffer
|
|
|
|
&& video_driver_poke->get_current_software_framebuffer(
|
2016-05-08 12:00:51 +00:00
|
|
|
video_driver_data, fb))
|
2016-11-21 12:17:28 +00:00
|
|
|
return true;
|
2016-05-08 12:00:51 +00:00
|
|
|
|
2016-11-21 12:17:28 +00:00
|
|
|
return false;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
2016-09-29 08:27:49 +00:00
|
|
|
bool video_driver_get_hw_render_interface(
|
|
|
|
const struct retro_hw_render_interface **iface)
|
2016-05-08 12:00:51 +00:00
|
|
|
{
|
|
|
|
if (
|
2017-12-12 07:55:31 +00:00
|
|
|
video_driver_poke
|
2016-11-21 12:17:28 +00:00
|
|
|
&& video_driver_poke->get_hw_render_interface
|
|
|
|
&& video_driver_poke->get_hw_render_interface(
|
2016-09-29 08:27:49 +00:00
|
|
|
video_driver_data, iface))
|
2016-11-21 12:17:28 +00:00
|
|
|
return true;
|
2016-05-08 12:00:51 +00:00
|
|
|
|
2016-11-21 12:17:28 +00:00
|
|
|
return false;
|
2016-05-08 12:00:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
2016-06-29 16:14:29 +00:00
|
|
|
|
2018-01-31 21:49:19 +00:00
|
|
|
fill_pathname_join_concat_noext(
|
|
|
|
video_driver_title_buf,
|
2016-05-08 12:00:51 +00:00
|
|
|
msg_hash_to_str(MSG_PROGRAM),
|
2016-06-29 16:10:48 +00:00
|
|
|
" ",
|
2016-05-08 12:00:51 +00:00
|
|
|
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?
|
|
|
|
*
|
2017-12-12 07:55:31 +00:00
|
|
|
* Gets viewport scaling dimensions based on
|
2015-11-21 12:01:23 +00:00
|
|
|
* 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();
|
|
|
|
|
2017-04-28 19:03:04 +00:00
|
|
|
if (settings->uints.video_aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
|
2015-11-21 12:01:23 +00:00
|
|
|
{
|
2017-06-18 16:49:49 +00:00
|
|
|
struct video_viewport *custom = video_viewport_get_custom();
|
2015-11-21 12:01:23 +00:00
|
|
|
|
|
|
|
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;
|
2017-12-12 07:55:31 +00:00
|
|
|
/* Use system reported sizes as these define the
|
2015-11-21 12:01:23 +00:00
|
|
|
* geometry for the "normal" case. */
|
2017-09-09 02:11:46 +00:00
|
|
|
unsigned base_height = video_driver_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.
|
|
|
|
*
|
2017-12-12 07:55:31 +00:00
|
|
|
* If square pixels are used, base_height will be equal to
|
2015-11-21 12:01:23 +00:00
|
|
|
* 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)
|
|
|
|
{
|
2017-05-18 07:44:51 +00:00
|
|
|
return &video_driver_av_info;
|
2015-11-21 12:01:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct video_viewport *video_viewport_get_custom(void)
|
|
|
|
{
|
2017-06-18 16:49:49 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
return &settings->video_viewport_custom;
|
2015-11-21 12:01:23 +00:00
|
|
|
}
|
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: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];
|
2017-01-09 13:25:59 +00:00
|
|
|
video_frame_info_t video_info;
|
2017-01-25 15:33:44 +00:00
|
|
|
static retro_time_t curr_time;
|
|
|
|
static retro_time_t fps_time;
|
|
|
|
static float last_fps;
|
2017-01-14 12:55:49 +00:00
|
|
|
unsigned output_width = 0;
|
|
|
|
unsigned output_height = 0;
|
2017-01-17 23:42:58 +00:00
|
|
|
unsigned output_pitch = 0;
|
2017-01-14 12:55:49 +00:00
|
|
|
const char *msg = NULL;
|
2017-12-12 07:55:31 +00:00
|
|
|
retro_time_t new_time =
|
2017-01-25 15:33:44 +00:00
|
|
|
cpu_features_get_time_usec();
|
2015-11-24 00:26:59 +00:00
|
|
|
|
2016-11-06 13:06:47 +00:00
|
|
|
if (!video_driver_active)
|
2015-11-24 00:26:59 +00:00
|
|
|
return;
|
|
|
|
|
2016-11-06 12:57:27 +00:00
|
|
|
if (video_driver_scaler_ptr && data &&
|
|
|
|
(video_driver_pix_fmt == RETRO_PIXEL_FORMAT_0RGB1555) &&
|
2017-01-25 15:53:06 +00:00
|
|
|
(data != RETRO_HW_FRAME_BUFFER_VALID))
|
2015-11-24 00:26:59 +00:00
|
|
|
{
|
2017-01-25 15:53:06 +00:00
|
|
|
if (video_pixel_frame_scale(
|
|
|
|
video_driver_scaler_ptr->scaler,
|
|
|
|
video_driver_scaler_ptr->scaler_out,
|
|
|
|
data, width, height, pitch))
|
|
|
|
{
|
|
|
|
data = video_driver_scaler_ptr->scaler_out;
|
|
|
|
pitch = video_driver_scaler_ptr->scaler->out_stride;
|
|
|
|
}
|
2015-11-24 00:26:59 +00:00
|
|
|
}
|
|
|
|
|
2016-11-08 14:26:15 +00:00
|
|
|
|
2017-01-19 01:34:35 +00:00
|
|
|
if (data)
|
|
|
|
frame_cache_data = data;
|
|
|
|
frame_cache_width = width;
|
|
|
|
frame_cache_height = height;
|
|
|
|
frame_cache_pitch = pitch;
|
2015-11-24 00:26:59 +00:00
|
|
|
|
2017-01-14 12:55:49 +00:00
|
|
|
video_driver_build_info(&video_info);
|
2017-01-09 14:46:40 +00:00
|
|
|
|
2017-01-25 15:33:44 +00:00
|
|
|
/* Get the amount of frames per seconds. */
|
2017-04-23 17:21:12 +00:00
|
|
|
if (video_driver_frame_count)
|
2017-01-25 15:33:44 +00:00
|
|
|
{
|
2017-12-12 07:55:31 +00:00
|
|
|
unsigned write_index =
|
|
|
|
video_driver_frame_time_count++ &
|
2017-01-25 15:33:44 +00:00
|
|
|
(MEASURE_FRAME_TIME_SAMPLES_COUNT - 1);
|
|
|
|
video_driver_frame_time_samples[write_index] = new_time - fps_time;
|
|
|
|
fps_time = new_time;
|
|
|
|
|
2017-04-23 17:21:12 +00:00
|
|
|
if ((video_driver_frame_count % FPS_UPDATE_INTERVAL) == 0)
|
2017-01-25 15:33:44 +00:00
|
|
|
{
|
|
|
|
char frames_text[64];
|
|
|
|
|
|
|
|
fill_pathname_noext(video_driver_window_title,
|
|
|
|
video_driver_title_buf,
|
|
|
|
" || ",
|
|
|
|
sizeof(video_driver_window_title));
|
|
|
|
|
|
|
|
if (video_info.fps_show)
|
|
|
|
{
|
|
|
|
last_fps = TIME_TO_FPS(curr_time, new_time, FPS_UPDATE_INTERVAL);
|
|
|
|
snprintf(video_info.fps_text,
|
|
|
|
sizeof(video_info.fps_text),
|
2017-10-14 00:35:55 +00:00
|
|
|
" FPS: %6.1f", last_fps);
|
2017-01-25 15:33:44 +00:00
|
|
|
strlcat(video_driver_window_title,
|
|
|
|
video_info.fps_text,
|
|
|
|
sizeof(video_driver_window_title));
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_time = new_time;
|
|
|
|
|
2017-10-14 00:35:55 +00:00
|
|
|
if (video_info.framecount_show)
|
|
|
|
{
|
|
|
|
strlcat(video_driver_window_title,
|
|
|
|
" || Frames: ",
|
|
|
|
sizeof(video_driver_window_title));
|
2017-01-25 15:33:44 +00:00
|
|
|
|
2017-10-14 00:35:55 +00:00
|
|
|
snprintf(frames_text,
|
|
|
|
sizeof(frames_text),
|
2017-11-27 16:11:43 +00:00
|
|
|
"%" PRIu64,
|
2017-10-14 00:35:55 +00:00
|
|
|
(uint64_t)video_driver_frame_count);
|
2017-01-25 15:33:44 +00:00
|
|
|
|
2017-10-14 00:35:55 +00:00
|
|
|
strlcat(video_driver_window_title,
|
|
|
|
frames_text,
|
|
|
|
sizeof(video_driver_window_title));
|
|
|
|
}
|
2017-01-25 15:33:44 +00:00
|
|
|
|
|
|
|
video_driver_window_title_update = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (video_info.fps_show)
|
2017-10-14 00:35:55 +00:00
|
|
|
{
|
|
|
|
if (video_info.framecount_show)
|
|
|
|
{
|
|
|
|
snprintf(
|
|
|
|
video_info.fps_text,
|
|
|
|
sizeof(video_info.fps_text),
|
2017-11-27 16:11:43 +00:00
|
|
|
"FPS: %6.1f || %s: %" PRIu64,
|
2017-10-14 00:35:55 +00:00
|
|
|
last_fps,
|
|
|
|
msg_hash_to_str(MSG_FRAMES),
|
|
|
|
(uint64_t)video_driver_frame_count);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
snprintf(
|
|
|
|
video_info.fps_text,
|
|
|
|
sizeof(video_info.fps_text),
|
|
|
|
"FPS: %6.1f",
|
|
|
|
last_fps);
|
|
|
|
}
|
|
|
|
}
|
2017-01-25 15:33:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
curr_time = fps_time = new_time;
|
|
|
|
|
|
|
|
strlcpy(video_driver_window_title,
|
|
|
|
video_driver_title_buf,
|
|
|
|
sizeof(video_driver_window_title));
|
|
|
|
|
|
|
|
if (video_info.fps_show)
|
|
|
|
strlcpy(video_info.fps_text,
|
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE),
|
|
|
|
sizeof(video_info.fps_text));
|
|
|
|
|
|
|
|
video_driver_window_title_update = true;
|
|
|
|
}
|
2017-01-18 16:41:27 +00:00
|
|
|
|
2015-11-24 00:26:59 +00:00
|
|
|
/* 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 (
|
|
|
|
(
|
2016-11-03 22:03:50 +00:00
|
|
|
!video_driver_state_filter
|
2017-12-12 07:55:31 +00:00
|
|
|
|| !video_info.post_filter_record
|
2015-11-30 06:22:08 +00:00
|
|
|
|| !data
|
2016-12-04 05:31:29 +00:00
|
|
|
|| video_driver_record_gpu_buffer
|
2016-12-05 01:02:59 +00:00
|
|
|
) && recording_data
|
2015-11-24 00:26:59 +00:00
|
|
|
)
|
2017-01-22 17:17:48 +00:00
|
|
|
recording_dump_frame(data, width, height, pitch, video_info.runloop_is_idle);
|
2015-11-24 00:26:59 +00:00
|
|
|
|
2016-11-06 12:34:48 +00:00
|
|
|
if (data && video_driver_state_filter &&
|
2017-01-19 22:12:18 +00:00
|
|
|
video_driver_frame_filter(data, &video_info, width, height, pitch,
|
2015-11-24 00:26:59 +00:00
|
|
|
&output_width, &output_height, &output_pitch))
|
|
|
|
{
|
2016-11-03 22:03:50 +00:00
|
|
|
data = video_driver_state_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';
|
2016-11-06 13:05:00 +00:00
|
|
|
|
2017-01-23 12:56:05 +00:00
|
|
|
if ( video_info.font_enable
|
2017-10-30 03:27:56 +00:00
|
|
|
&& runloop_msg_queue_pull((const char**)&msg)
|
2017-01-23 12:56:05 +00:00
|
|
|
&& msg)
|
2017-10-30 03:27:56 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
/* the msg pointer may point to data modified by another thread */
|
|
|
|
runloop_msg_queue_lock();
|
|
|
|
#endif
|
2015-12-07 09:59:53 +00:00
|
|
|
strlcpy(video_driver_msg, msg, sizeof(video_driver_msg));
|
2017-10-30 03:27:56 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
runloop_msg_queue_unlock();
|
|
|
|
#endif
|
|
|
|
}
|
2015-12-07 09:59:53 +00:00
|
|
|
|
2017-05-18 23:19:28 +00:00
|
|
|
video_driver_active = current_video->frame(
|
|
|
|
video_driver_data, data, width, height,
|
|
|
|
video_driver_frame_count,
|
|
|
|
(unsigned)pitch, video_driver_msg, &video_info);
|
2017-01-18 16:41:27 +00:00
|
|
|
|
2017-04-23 17:21:12 +00:00
|
|
|
video_driver_frame_count++;
|
|
|
|
|
2017-11-26 21:53:42 +00:00
|
|
|
/* Display the FPS, with a higher priority. */
|
2017-01-18 16:41:27 +00:00
|
|
|
if (video_info.fps_show)
|
2017-11-18 16:05:38 +00:00
|
|
|
runloop_msg_queue_push(video_info.fps_text, 2, 1, true);
|
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
|
|
|
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,
|
2016-10-18 02:04:40 +00:00
|
|
|
video_driver_is_threaded(),
|
2015-12-20 19:52:23 +00:00
|
|
|
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;
|
|
|
|
}
|
2016-12-07 07:07:11 +00:00
|
|
|
|
2017-05-19 12:24:19 +00:00
|
|
|
static void video_shader_driver_use_null(void *data,
|
|
|
|
void *shader_data, unsigned idx, bool set_active)
|
|
|
|
{
|
|
|
|
(void)data;
|
|
|
|
(void)idx;
|
|
|
|
(void)set_active;
|
|
|
|
}
|
|
|
|
|
2017-11-13 10:26:53 +00:00
|
|
|
static bool video_driver_cb_set_coords(void *handle_data,
|
|
|
|
void *shader_data, const struct video_coords *coords)
|
|
|
|
{
|
2017-11-15 13:24:16 +00:00
|
|
|
video_shader_ctx_coords_t ctx_coords;
|
|
|
|
ctx_coords.handle_data = handle_data;
|
|
|
|
ctx_coords.data = coords;
|
2017-11-13 10:26:53 +00:00
|
|
|
|
2017-11-15 13:24:16 +00:00
|
|
|
video_driver_set_coords(&ctx_coords);
|
|
|
|
return true;
|
2017-11-13 11:27:45 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 15:09:32 +00:00
|
|
|
void video_driver_build_info(video_frame_info_t *video_info)
|
|
|
|
{
|
2017-01-25 15:57:22 +00:00
|
|
|
bool is_perfcnt_enable = false;
|
2017-01-22 15:22:20 +00:00
|
|
|
bool is_paused = false;
|
|
|
|
bool is_idle = false;
|
|
|
|
bool is_slowmotion = false;
|
2017-01-19 15:01:35 +00:00
|
|
|
settings_t *settings = NULL;
|
2017-06-18 16:49:49 +00:00
|
|
|
video_viewport_t *custom_vp = NULL;
|
2017-08-07 16:05:43 +00:00
|
|
|
struct retro_hw_render_callback *hwr =
|
|
|
|
video_driver_get_hw_context();
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
bool is_threaded = video_driver_is_threaded();
|
2017-04-29 15:38:47 +00:00
|
|
|
video_driver_threaded_lock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2017-01-19 15:01:35 +00:00
|
|
|
settings = config_get_ptr();
|
2017-06-18 16:49:49 +00:00
|
|
|
custom_vp = &settings->video_viewport_custom;
|
2017-04-28 12:57:55 +00:00
|
|
|
video_info->refresh_rate = settings->floats.video_refresh_rate;
|
2017-12-12 07:55:31 +00:00
|
|
|
video_info->black_frame_insertion =
|
2017-04-27 22:53:06 +00:00
|
|
|
settings->bools.video_black_frame_insertion;
|
|
|
|
video_info->hard_sync = settings->bools.video_hard_sync;
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->hard_sync_frames = settings->uints.video_hard_sync_frames;
|
2017-04-28 10:26:01 +00:00
|
|
|
video_info->fps_show = settings->bools.video_fps_show;
|
2017-10-14 00:35:55 +00:00
|
|
|
video_info->framecount_show = settings->bools.video_framecount_show;
|
2017-04-27 22:53:06 +00:00
|
|
|
video_info->scale_integer = settings->bools.video_scale_integer;
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->aspect_ratio_idx = settings->uints.video_aspect_ratio_idx;
|
2017-04-27 22:53:06 +00:00
|
|
|
video_info->post_filter_record = settings->bools.video_post_filter_record;
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->max_swapchain_images = settings->uints.video_max_swapchain_images;
|
2017-04-27 22:53:06 +00:00
|
|
|
video_info->windowed_fullscreen = settings->bools.video_windowed_fullscreen;
|
2017-12-17 17:56:26 +00:00
|
|
|
video_info->fullscreen = settings->bools.video_fullscreen || retroarch_is_forced_fullscreen();
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->monitor_index = settings->uints.video_monitor_index;
|
2017-04-27 22:53:06 +00:00
|
|
|
video_info->shared_context = settings->bools.video_shared_context;
|
2017-08-07 16:05:43 +00:00
|
|
|
|
|
|
|
if (libretro_get_shared_context() && hwr && hwr->context_type != RETRO_HW_CONTEXT_NONE)
|
|
|
|
video_info->shared_context = true;
|
2017-12-12 07:55:31 +00:00
|
|
|
|
2017-04-27 22:53:06 +00:00
|
|
|
video_info->font_enable = settings->bools.video_font_enable;
|
2017-04-28 12:57:55 +00:00
|
|
|
video_info->font_msg_pos_x = settings->floats.video_msg_pos_x;
|
|
|
|
video_info->font_msg_pos_y = settings->floats.video_msg_pos_y;
|
|
|
|
video_info->font_msg_color_r = settings->floats.video_msg_color_r;
|
|
|
|
video_info->font_msg_color_g = settings->floats.video_msg_color_g;
|
|
|
|
video_info->font_msg_color_b = settings->floats.video_msg_color_b;
|
2017-06-18 16:49:49 +00:00
|
|
|
video_info->custom_vp_x = custom_vp->x;
|
|
|
|
video_info->custom_vp_y = custom_vp->y;
|
|
|
|
video_info->custom_vp_width = custom_vp->width;
|
|
|
|
video_info->custom_vp_height = custom_vp->height;
|
|
|
|
video_info->custom_vp_full_width = custom_vp->full_width;
|
|
|
|
video_info->custom_vp_full_height = custom_vp->full_height;
|
2017-01-18 16:41:27 +00:00
|
|
|
|
|
|
|
video_info->fps_text[0] = '\0';
|
2017-01-19 00:24:21 +00:00
|
|
|
|
|
|
|
video_info->width = video_driver_width;
|
|
|
|
video_info->height = video_driver_height;
|
2017-01-19 05:33:52 +00:00
|
|
|
|
2017-01-20 20:05:25 +00:00
|
|
|
video_info->use_rgba = video_driver_use_rgba;
|
2017-01-20 13:25:00 +00:00
|
|
|
|
|
|
|
video_info->libretro_running = false;
|
|
|
|
#ifdef HAVE_MENU
|
2017-01-22 23:37:39 +00:00
|
|
|
video_info->menu_is_alive = menu_driver_is_alive();
|
2017-04-28 12:57:55 +00:00
|
|
|
video_info->menu_footer_opacity = settings->floats.menu_footer_opacity;
|
|
|
|
video_info->menu_header_opacity = settings->floats.menu_header_opacity;
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->materialui_color_theme = settings->uints.menu_materialui_color_theme;
|
|
|
|
video_info->menu_shader_pipeline = settings->uints.menu_xmb_shader_pipeline;
|
|
|
|
video_info->xmb_theme = settings->uints.menu_xmb_theme;
|
|
|
|
video_info->xmb_color_theme = settings->uints.menu_xmb_color_theme;
|
2017-04-28 11:43:47 +00:00
|
|
|
video_info->timedate_enable = settings->bools.menu_timedate_enable;
|
|
|
|
video_info->battery_level_enable = settings->bools.menu_battery_level_enable;
|
|
|
|
video_info->xmb_shadows_enable = settings->bools.menu_xmb_shadows_enable;
|
2017-04-28 19:03:04 +00:00
|
|
|
video_info->xmb_alpha_factor = settings->uints.menu_xmb_alpha_factor;
|
2017-08-15 20:43:09 +00:00
|
|
|
video_info->menu_wallpaper_opacity = settings->floats.menu_wallpaper_opacity;
|
|
|
|
video_info->menu_framebuffer_opacity = settings->floats.menu_framebuffer_opacity;
|
2017-01-20 13:25:00 +00:00
|
|
|
|
2017-05-31 22:39:39 +00:00
|
|
|
video_info->libretro_running = core_is_game_loaded();
|
2017-01-20 14:33:47 +00:00
|
|
|
#else
|
2017-01-22 16:30:32 +00:00
|
|
|
video_info->menu_is_alive = false;
|
2017-01-20 14:38:20 +00:00
|
|
|
video_info->menu_footer_opacity = 0.0f;
|
|
|
|
video_info->menu_header_opacity = 0.0f;
|
|
|
|
video_info->materialui_color_theme = 0;
|
2017-01-20 14:33:47 +00:00
|
|
|
video_info->menu_shader_pipeline = 0;
|
|
|
|
video_info->xmb_color_theme = 0;
|
|
|
|
video_info->xmb_theme = 0;
|
|
|
|
video_info->timedate_enable = false;
|
|
|
|
video_info->battery_level_enable = false;
|
|
|
|
video_info->xmb_shadows_enable = false;
|
|
|
|
video_info->xmb_alpha_factor = 0.0f;
|
2017-08-15 20:43:09 +00:00
|
|
|
video_info->menu_framebuffer_opacity = 0.0f;
|
2017-01-20 14:33:47 +00:00
|
|
|
video_info->menu_wallpaper_opacity = 0.0f;
|
2017-01-20 13:25:00 +00:00
|
|
|
#endif
|
2017-01-22 15:22:20 +00:00
|
|
|
|
2017-01-25 15:57:22 +00:00
|
|
|
runloop_get_status(&is_paused, &is_idle, &is_slowmotion, &is_perfcnt_enable);
|
2017-01-22 15:22:20 +00:00
|
|
|
|
2017-01-25 15:57:22 +00:00
|
|
|
video_info->is_perfcnt_enable = is_perfcnt_enable;
|
2017-01-22 15:22:20 +00:00
|
|
|
video_info->runloop_is_paused = is_paused;
|
|
|
|
video_info->runloop_is_idle = is_idle;
|
|
|
|
video_info->runloop_is_slowmotion = is_slowmotion;
|
2017-05-08 22:58:01 +00:00
|
|
|
|
|
|
|
video_info->input_driver_nonblock_state = input_driver_is_nonblock_state();
|
2017-05-18 00:53:12 +00:00
|
|
|
|
|
|
|
video_info->context_data = video_context_data;
|
2017-05-19 12:24:19 +00:00
|
|
|
video_info->shader_data = shader_data;
|
2017-05-18 00:53:12 +00:00
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
video_info->cb_update_window_title = current_video_context.update_window_title;
|
|
|
|
video_info->cb_swap_buffers = current_video_context.swap_buffers;
|
|
|
|
video_info->cb_get_metrics = current_video_context.get_metrics;
|
|
|
|
video_info->cb_set_resize = current_video_context.set_resize;
|
2017-05-18 00:53:12 +00:00
|
|
|
|
2017-05-19 13:59:28 +00:00
|
|
|
video_info->cb_shader_use = video_driver_cb_shader_use;
|
2017-11-16 11:02:08 +00:00
|
|
|
video_info->cb_set_mvp = video_driver_cb_shader_set_mvp;
|
2017-05-19 12:24:19 +00:00
|
|
|
|
2017-11-13 11:27:45 +00:00
|
|
|
#if 0
|
2017-11-13 10:26:53 +00:00
|
|
|
video_info->cb_set_coords = video_driver_cb_set_coords;
|
2017-11-13 11:27:45 +00:00
|
|
|
#endif
|
2017-11-13 10:26:53 +00:00
|
|
|
|
2017-04-29 16:30:23 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2017-04-29 15:38:47 +00:00
|
|
|
video_driver_threaded_unlock(is_threaded);
|
2017-04-29 16:30:23 +00:00
|
|
|
#endif
|
2017-01-13 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2016-12-07 07:07:11 +00:00
|
|
|
/**
|
|
|
|
* video_driver_translate_coord_viewport:
|
|
|
|
* @mouse_x : Pointer X coordinate.
|
|
|
|
* @mouse_y : Pointer Y coordinate.
|
|
|
|
* @res_x : Scaled X coordinate.
|
|
|
|
* @res_y : Scaled Y coordinate.
|
|
|
|
* @res_screen_x : Scaled screen X coordinate.
|
|
|
|
* @res_screen_y : Scaled screen Y coordinate.
|
|
|
|
*
|
|
|
|
* Translates pointer [X,Y] coordinates into scaled screen
|
|
|
|
* coordinates based on viewport info.
|
|
|
|
*
|
|
|
|
* Returns: true (1) if successful, false if video driver doesn't support
|
|
|
|
* viewport info.
|
|
|
|
**/
|
|
|
|
bool video_driver_translate_coord_viewport(
|
|
|
|
void *data,
|
|
|
|
int mouse_x, int mouse_y,
|
|
|
|
int16_t *res_x, int16_t *res_y,
|
|
|
|
int16_t *res_screen_x, int16_t *res_screen_y)
|
|
|
|
{
|
|
|
|
int scaled_screen_x, scaled_screen_y, scaled_x, scaled_y;
|
|
|
|
struct video_viewport *vp = (struct video_viewport*)data;
|
2017-05-29 21:00:56 +00:00
|
|
|
int norm_vp_width = (int)vp->width;
|
|
|
|
int norm_vp_height = (int)vp->height;
|
2016-12-07 07:07:11 +00:00
|
|
|
int norm_full_vp_width = (int)vp->full_width;
|
|
|
|
int norm_full_vp_height = (int)vp->full_height;
|
|
|
|
|
|
|
|
if (norm_full_vp_width <= 0 || norm_full_vp_height <= 0)
|
|
|
|
return false;
|
|
|
|
|
2017-05-29 21:00:56 +00:00
|
|
|
if (mouse_x >= 0 && mouse_x <= norm_full_vp_width)
|
|
|
|
scaled_screen_x = ((2 * mouse_x * 0x7fff) / norm_full_vp_width) - 0x7fff;
|
|
|
|
else
|
|
|
|
scaled_screen_x = -0x8000; /* OOB */
|
|
|
|
|
|
|
|
if (mouse_y >= 0 && mouse_y <= norm_full_vp_height)
|
|
|
|
scaled_screen_y = ((2 * mouse_y * 0x7fff) / norm_full_vp_height) - 0x7fff;
|
|
|
|
else
|
|
|
|
scaled_screen_y = -0x8000; /* OOB */
|
2016-12-07 07:07:11 +00:00
|
|
|
|
2017-01-14 20:02:30 +00:00
|
|
|
mouse_x -= vp->x;
|
|
|
|
mouse_y -= vp->y;
|
2016-12-07 07:07:11 +00:00
|
|
|
|
2017-05-29 21:00:56 +00:00
|
|
|
if (mouse_x >= 0 && mouse_x <= norm_vp_width)
|
|
|
|
scaled_x = ((2 * mouse_x * 0x7fff) / norm_vp_width) - 0x7fff;
|
|
|
|
else
|
2017-01-14 20:02:30 +00:00
|
|
|
scaled_x = -0x8000; /* OOB */
|
2017-05-29 21:00:56 +00:00
|
|
|
|
|
|
|
if (mouse_y >= 0 && mouse_y <= norm_vp_height)
|
|
|
|
scaled_y = ((2 * mouse_y * 0x7fff) / norm_vp_height) - 0x7fff;
|
|
|
|
else
|
2017-01-14 20:02:30 +00:00
|
|
|
scaled_y = -0x8000; /* OOB */
|
2016-12-07 07:07:11 +00:00
|
|
|
|
2017-01-14 20:02:30 +00:00
|
|
|
*res_x = scaled_x;
|
|
|
|
*res_y = scaled_y;
|
|
|
|
*res_screen_x = scaled_screen_x;
|
|
|
|
*res_screen_y = scaled_screen_y;
|
2016-12-07 07:07:11 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-01-19 05:33:52 +00:00
|
|
|
|
|
|
|
void video_driver_get_window_title(char *buf, unsigned len)
|
|
|
|
{
|
|
|
|
if (buf && video_driver_window_title_update)
|
|
|
|
{
|
|
|
|
strlcpy(buf, video_driver_window_title, len);
|
|
|
|
video_driver_window_title_update = false;
|
|
|
|
}
|
|
|
|
}
|
2017-01-25 03:39:21 +00:00
|
|
|
|
2017-01-25 03:42:19 +00:00
|
|
|
void video_driver_get_status(uint64_t *frame_count, bool * is_alive,
|
|
|
|
bool *is_focused)
|
2017-01-25 03:39:21 +00:00
|
|
|
{
|
2017-04-23 19:39:49 +00:00
|
|
|
*frame_count = video_driver_frame_count;
|
2017-05-20 12:09:24 +00:00
|
|
|
*is_alive = current_video ? current_video->alive(video_driver_data) : true;
|
2017-05-20 10:02:24 +00:00
|
|
|
*is_focused = video_driver_cb_has_focus();
|
2017-01-25 03:39:21 +00:00
|
|
|
}
|
2017-05-08 23:25:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* find_video_context_driver_driver_index:
|
|
|
|
* @ident : Identifier of resampler driver to find.
|
|
|
|
*
|
|
|
|
* Finds graphics context driver index by @ident name.
|
|
|
|
*
|
|
|
|
* Returns: graphics context driver index if driver was found, otherwise
|
|
|
|
* -1.
|
|
|
|
**/
|
|
|
|
static int find_video_context_driver_index(const char *ident)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; gfx_ctx_drivers[i]; i++)
|
|
|
|
if (string_is_equal_noncase(ident, gfx_ctx_drivers[i]->ident))
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* find_prev_context_driver:
|
|
|
|
*
|
|
|
|
* Finds previous driver in graphics context driver array.
|
|
|
|
**/
|
|
|
|
bool video_context_driver_find_prev_driver(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
int i = find_video_context_driver_index(
|
|
|
|
settings->arrays.video_context_driver);
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
{
|
|
|
|
strlcpy(settings->arrays.video_context_driver,
|
|
|
|
gfx_ctx_drivers[i - 1]->ident,
|
|
|
|
sizeof(settings->arrays.video_context_driver));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
RARCH_WARN("Couldn't find any previous video context driver.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* find_next_context_driver:
|
|
|
|
*
|
|
|
|
* Finds next driver in graphics context driver array.
|
|
|
|
**/
|
|
|
|
bool video_context_driver_find_next_driver(void)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
int i = find_video_context_driver_index(settings->arrays.video_context_driver);
|
|
|
|
|
|
|
|
if (i >= 0 && gfx_ctx_drivers[i + 1])
|
|
|
|
{
|
|
|
|
strlcpy(settings->arrays.video_context_driver,
|
|
|
|
gfx_ctx_drivers[i + 1]->ident,
|
|
|
|
sizeof(settings->arrays.video_context_driver));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
RARCH_WARN("Couldn't find any next video context driver.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_context_driver_init:
|
|
|
|
* @data : Input data.
|
|
|
|
* @ctx : Graphics context driver to initialize.
|
|
|
|
* @ident : Identifier of graphics context driver to find.
|
|
|
|
* @api : API of higher-level graphics API.
|
|
|
|
* @major : Major version number of higher-level graphics API.
|
|
|
|
* @minor : Minor version number of higher-level graphics API.
|
|
|
|
* @hw_render_ctx : Request a graphics context driver capable of
|
|
|
|
* hardware rendering?
|
|
|
|
*
|
|
|
|
* Initialize graphics context driver.
|
|
|
|
*
|
|
|
|
* Returns: graphics context driver if successfully initialized, otherwise NULL.
|
|
|
|
**/
|
|
|
|
static const gfx_ctx_driver_t *video_context_driver_init(
|
|
|
|
void *data,
|
|
|
|
const gfx_ctx_driver_t *ctx,
|
|
|
|
const char *ident,
|
|
|
|
enum gfx_ctx_api api, unsigned major,
|
|
|
|
unsigned minor, bool hw_render_ctx)
|
|
|
|
{
|
|
|
|
if (ctx->bind_api(data, api, major, minor))
|
|
|
|
{
|
|
|
|
video_frame_info_t video_info;
|
|
|
|
void *ctx_data = NULL;
|
|
|
|
|
|
|
|
video_driver_build_info(&video_info);
|
|
|
|
|
|
|
|
ctx_data = ctx->init(&video_info, data);
|
|
|
|
|
|
|
|
if (!ctx_data)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (ctx->bind_hw_render)
|
|
|
|
ctx->bind_hw_render(ctx_data,
|
|
|
|
video_info.shared_context && hw_render_ctx);
|
|
|
|
|
|
|
|
video_context_driver_set_data(ctx_data);
|
2017-09-18 02:46:17 +00:00
|
|
|
|
|
|
|
current_video_context_api = api;
|
|
|
|
|
2017-05-08 23:25:59 +00:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
RARCH_WARN("Failed to bind API (#%u, version %u.%u) on context driver \"%s\".\n",
|
|
|
|
(unsigned)api, major, minor, ctx->ident);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_context_driver_find_driver:
|
|
|
|
* @data : Input data.
|
|
|
|
* @ident : Identifier of graphics context driver to find.
|
|
|
|
* @api : API of higher-level graphics API.
|
|
|
|
* @major : Major version number of higher-level graphics API.
|
|
|
|
* @minor : Minor version number of higher-level graphics API.
|
|
|
|
* @hw_render_ctx : Request a graphics context driver capable of
|
|
|
|
* hardware rendering?
|
|
|
|
*
|
|
|
|
* Finds graphics context driver and initializes.
|
|
|
|
*
|
|
|
|
* Returns: graphics context driver if found, otherwise NULL.
|
|
|
|
**/
|
|
|
|
static const gfx_ctx_driver_t *video_context_driver_find_driver(void *data,
|
|
|
|
const char *ident,
|
|
|
|
enum gfx_ctx_api api, unsigned major,
|
|
|
|
unsigned minor, bool hw_render_ctx)
|
|
|
|
{
|
|
|
|
int i = find_video_context_driver_index(ident);
|
|
|
|
|
|
|
|
if (i >= 0)
|
|
|
|
return video_context_driver_init(data, gfx_ctx_drivers[i], ident,
|
|
|
|
api, major, minor, hw_render_ctx);
|
|
|
|
|
|
|
|
for (i = 0; gfx_ctx_drivers[i]; i++)
|
|
|
|
{
|
|
|
|
const gfx_ctx_driver_t *ctx =
|
|
|
|
video_context_driver_init(data, gfx_ctx_drivers[i], ident,
|
|
|
|
api, major, minor, hw_render_ctx);
|
|
|
|
|
|
|
|
if (ctx)
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* video_context_driver_init_first:
|
|
|
|
* @data : Input data.
|
|
|
|
* @ident : Identifier of graphics context driver to find.
|
|
|
|
* @api : API of higher-level graphics API.
|
|
|
|
* @major : Major version number of higher-level graphics API.
|
|
|
|
* @minor : Minor version number of higher-level graphics API.
|
|
|
|
* @hw_render_ctx : Request a graphics context driver capable of
|
|
|
|
* hardware rendering?
|
|
|
|
*
|
|
|
|
* Finds first suitable graphics context driver and initializes.
|
|
|
|
*
|
|
|
|
* Returns: graphics context driver if found, otherwise NULL.
|
|
|
|
**/
|
|
|
|
const gfx_ctx_driver_t *video_context_driver_init_first(void *data,
|
|
|
|
const char *ident, enum gfx_ctx_api api, unsigned major,
|
|
|
|
unsigned minor, bool hw_render_ctx)
|
|
|
|
{
|
|
|
|
return video_context_driver_find_driver(data, ident, api,
|
|
|
|
major, minor, hw_render_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_check_window(gfx_ctx_size_t *size_data)
|
|
|
|
{
|
|
|
|
if ( video_context_data
|
2017-05-18 01:37:02 +00:00
|
|
|
&& current_video_context.check_window)
|
2017-05-08 23:25:59 +00:00
|
|
|
{
|
2017-05-15 03:06:23 +00:00
|
|
|
bool is_shutdown = rarch_ctl(RARCH_CTL_IS_SHUTDOWN, NULL);
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.check_window(video_context_data,
|
2017-05-08 23:25:59 +00:00
|
|
|
size_data->quit,
|
|
|
|
size_data->resize,
|
|
|
|
size_data->width,
|
|
|
|
size_data->height,
|
|
|
|
is_shutdown);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_init_image_buffer(const video_info_t *data)
|
|
|
|
{
|
2017-12-12 07:55:31 +00:00
|
|
|
if (
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.image_buffer_init
|
|
|
|
&& current_video_context.image_buffer_init(video_context_data, data))
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_write_to_image_buffer(gfx_ctx_image_t *img)
|
|
|
|
{
|
2017-12-12 07:55:31 +00:00
|
|
|
if (
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.image_buffer_write
|
|
|
|
&& current_video_context.image_buffer_write(video_context_data,
|
2017-05-08 23:25:59 +00:00
|
|
|
img->frame, img->width, img->height, img->pitch,
|
|
|
|
img->rgb32, img->index, img->handle))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_video_output_prev(void)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_video_output_prev)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.get_video_output_prev(video_context_data);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_video_output_next(void)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_video_output_next)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.get_video_output_next(video_context_data);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_bind_hw_render(bool *enable)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.bind_hw_render)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.bind_hw_render(video_context_data, *enable);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_context_driver_make_current(bool release)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (current_video_context.make_current)
|
|
|
|
current_video_context.make_current(release);
|
2017-05-08 23:25:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool video_context_driver_translate_aspect(gfx_ctx_aspect_t *aspect)
|
|
|
|
{
|
|
|
|
if (!video_context_data || !aspect)
|
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.translate_aspect)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
*aspect->aspect = current_video_context.translate_aspect(
|
2017-05-08 23:25:59 +00:00
|
|
|
video_context_data, aspect->width, aspect->height);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_context_driver_free(void)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (current_video_context.destroy)
|
|
|
|
current_video_context.destroy(video_context_data);
|
|
|
|
video_context_driver_destroy();
|
2017-05-08 23:25:59 +00:00
|
|
|
video_context_data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_video_output_size(gfx_ctx_size_t *size_data)
|
|
|
|
{
|
|
|
|
if (!size_data)
|
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_video_output_size)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.get_video_output_size(video_context_data,
|
2017-05-08 23:25:59 +00:00
|
|
|
size_data->width, size_data->height);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_swap_interval(unsigned *interval)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.swap_interval)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.swap_interval(video_context_data, *interval);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_proc_address(gfx_ctx_proc_address_t *proc)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_proc_address)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
proc->addr = current_video_context.get_proc_address(proc->sym);
|
2017-05-08 23:25:59 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_metrics(gfx_ctx_metrics_t *metrics)
|
|
|
|
{
|
2017-12-12 07:55:31 +00:00
|
|
|
if (
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.get_metrics(video_context_data,
|
2017-05-08 23:25:59 +00:00
|
|
|
metrics->type,
|
|
|
|
metrics->value))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_input_driver(gfx_ctx_input_t *inp)
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *joypad_name = settings ? settings->arrays.input_joypad_driver : NULL;
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.input_driver)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.input_driver(
|
2017-05-08 23:25:59 +00:00
|
|
|
video_context_data, joypad_name,
|
|
|
|
inp->input, inp->input_data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_suppress_screensaver(bool *bool_data)
|
|
|
|
{
|
|
|
|
if ( video_context_data
|
2017-05-18 01:37:02 +00:00
|
|
|
&& current_video_context.suppress_screensaver(
|
2017-05-08 23:25:59 +00:00
|
|
|
video_context_data, *bool_data))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_ident(gfx_ctx_ident_t *ident)
|
|
|
|
{
|
|
|
|
if (!ident)
|
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
ident->ident = current_video_context.ident;
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_set_video_mode(gfx_ctx_mode_t *mode_info)
|
|
|
|
{
|
|
|
|
video_frame_info_t video_info;
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.set_video_mode)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
video_driver_build_info(&video_info);
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.set_video_mode(
|
2017-05-08 23:25:59 +00:00
|
|
|
video_context_data, &video_info, mode_info->width,
|
|
|
|
mode_info->height, mode_info->fullscreen))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_video_size(gfx_ctx_mode_t *mode_info)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_video_size)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.get_video_size(video_context_data,
|
2017-05-08 23:25:59 +00:00
|
|
|
&mode_info->width, &mode_info->height);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_context_data(void *data)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_context_data)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
*(void**)data = current_video_context.get_context_data(video_context_data);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_show_mouse(bool *bool_data)
|
|
|
|
{
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.show_mouse)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.show_mouse(video_context_data, *bool_data);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void video_context_driver_set_data(void *data)
|
|
|
|
{
|
|
|
|
video_context_data = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_get_flags(gfx_ctx_flags_t *flags)
|
|
|
|
{
|
|
|
|
if (!flags)
|
|
|
|
return false;
|
2017-05-18 01:37:02 +00:00
|
|
|
if (!current_video_context.get_flags)
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-10-12 16:38:07 +00:00
|
|
|
|
|
|
|
if (deferred_video_context_driver_set_flags)
|
|
|
|
{
|
|
|
|
flags->flags = deferred_flag_data.flags;
|
|
|
|
deferred_video_context_driver_set_flags = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
flags->flags = current_video_context.get_flags(video_context_data);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_context_driver_set_flags(gfx_ctx_flags_t *flags)
|
|
|
|
{
|
|
|
|
if (!flags)
|
|
|
|
return false;
|
2017-12-12 07:55:31 +00:00
|
|
|
if (!current_video_context.set_flags)
|
2017-10-12 16:38:07 +00:00
|
|
|
{
|
|
|
|
deferred_flag_data.flags = flags->flags;
|
|
|
|
deferred_video_context_driver_set_flags = true;
|
2017-05-08 23:25:59 +00:00
|
|
|
return false;
|
2017-12-12 07:55:31 +00:00
|
|
|
}
|
2017-10-12 16:38:07 +00:00
|
|
|
|
2017-05-18 01:37:02 +00:00
|
|
|
current_video_context.set_flags(video_context_data, flags->flags);
|
2017-05-08 23:25:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
2017-05-13 17:11:32 +00:00
|
|
|
|
2017-09-18 02:46:17 +00:00
|
|
|
enum gfx_ctx_api video_context_driver_get_api(void)
|
|
|
|
{
|
|
|
|
return current_video_context_api;
|
|
|
|
}
|
|
|
|
|
2017-05-13 17:11:32 +00:00
|
|
|
bool video_driver_has_windowed(void)
|
|
|
|
{
|
|
|
|
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
|
|
|
|
return false;
|
|
|
|
#else
|
2017-05-13 17:19:49 +00:00
|
|
|
if (video_driver_data && current_video->has_windowed)
|
2017-05-13 17:11:32 +00:00
|
|
|
return current_video->has_windowed(video_driver_data);
|
2017-05-18 01:37:02 +00:00
|
|
|
else if (video_context_data && current_video_context.has_windowed)
|
|
|
|
return current_video_context.has_windowed(video_context_data);
|
2017-05-13 17:11:32 +00:00
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
2017-05-13 17:37:16 +00:00
|
|
|
|
|
|
|
bool video_driver_cached_frame_has_valid_framebuffer(void)
|
|
|
|
{
|
|
|
|
if (frame_cache_data)
|
|
|
|
return (frame_cache_data == RETRO_HW_FRAME_BUFFER_VALID);
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-18 12:47:24 +00:00
|
|
|
|
|
|
|
static const shader_backend_t *video_shader_set_backend(enum rarch_shader_type type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case RARCH_SHADER_CG:
|
|
|
|
{
|
|
|
|
#ifdef HAVE_CG
|
|
|
|
gfx_ctx_flags_t flags;
|
|
|
|
flags.flags = 0;
|
|
|
|
video_context_driver_get_flags(&flags);
|
|
|
|
|
|
|
|
if (BIT32_GET(flags.flags, GFX_CTX_FLAGS_GL_CORE_CONTEXT))
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Shader driver]: Cg cannot be used with core GL context. Trying to fall back to GLSL...\n");
|
|
|
|
return video_shader_set_backend(RARCH_SHADER_GLSL);
|
|
|
|
}
|
|
|
|
|
|
|
|
RARCH_LOG("[Shader driver]: Using Cg shader backend.\n");
|
|
|
|
return &gl_cg_backend;
|
|
|
|
#else
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
case RARCH_SHADER_GLSL:
|
|
|
|
#ifdef HAVE_GLSL
|
|
|
|
RARCH_LOG("[Shader driver]: Using GLSL shader backend.\n");
|
|
|
|
return &gl_glsl_backend;
|
|
|
|
#else
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case RARCH_SHADER_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_get_prev_textures(video_shader_ctx_texture_t *texture)
|
|
|
|
{
|
|
|
|
if (!texture)
|
|
|
|
return false;
|
|
|
|
texture->id = current_shader->get_prev_textures(shader_data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_get_ident(video_shader_ctx_ident_t *ident)
|
|
|
|
{
|
|
|
|
if (!ident)
|
|
|
|
return false;
|
|
|
|
ident->ident = current_shader->ident;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_get_current_shader(video_shader_ctx_t *shader)
|
|
|
|
{
|
|
|
|
void *video_driver = video_driver_get_ptr(true);
|
|
|
|
const video_poke_interface_t *video_poke = video_driver_get_poke();
|
|
|
|
|
|
|
|
shader->data = NULL;
|
|
|
|
if (!video_poke || !video_driver || !video_poke->get_current_shader)
|
|
|
|
return false;
|
|
|
|
shader->data = video_poke->get_current_shader(video_driver);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_direct_get_current_shader(video_shader_ctx_t *shader)
|
|
|
|
{
|
|
|
|
shader->data = current_shader->get_current_shader(shader_data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_deinit(void)
|
|
|
|
{
|
|
|
|
if (!current_shader)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (current_shader->deinit)
|
|
|
|
current_shader->deinit(shader_data);
|
|
|
|
|
|
|
|
shader_data = NULL;
|
|
|
|
current_shader = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum gfx_wrap_type video_shader_driver_wrap_type_null(
|
|
|
|
void *data, unsigned index)
|
|
|
|
{
|
|
|
|
return RARCH_WRAP_BORDER;
|
|
|
|
}
|
|
|
|
|
2017-11-15 13:24:16 +00:00
|
|
|
static bool video_driver_cb_set_mvp(void *data,
|
2017-11-15 13:09:41 +00:00
|
|
|
void *shader_data, const void *mat_data)
|
2017-06-07 01:41:36 +00:00
|
|
|
{
|
2017-11-15 13:24:16 +00:00
|
|
|
video_shader_ctx_mvp_t mvp;
|
|
|
|
mvp.data = data;
|
|
|
|
mvp.matrix = mat_data;
|
2017-11-13 11:15:28 +00:00
|
|
|
|
2017-11-15 13:24:16 +00:00
|
|
|
video_driver_set_mvp(&mvp);
|
2017-11-13 11:15:28 +00:00
|
|
|
return true;
|
2017-05-18 12:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct video_shader *video_shader_driver_get_current_shader_null(void *data)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void video_shader_driver_set_params_null(void *data, void *shader_data,
|
2017-12-12 07:55:31 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
unsigned tex_width, unsigned tex_height,
|
2017-05-18 12:47:24 +00:00
|
|
|
unsigned out_width, unsigned out_height,
|
|
|
|
unsigned frame_count,
|
2017-12-12 07:55:31 +00:00
|
|
|
const void *info,
|
|
|
|
const void *prev_info,
|
2017-05-18 12:47:24 +00:00
|
|
|
const void *feedback_info,
|
|
|
|
const void *fbo_info, unsigned fbo_info_cnt)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void video_shader_driver_scale_null(void *data,
|
|
|
|
unsigned idx, struct gfx_fbo_scale *scale)
|
|
|
|
{
|
|
|
|
(void)idx;
|
|
|
|
(void)scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool video_shader_driver_mipmap_input_null(void *data, unsigned idx)
|
|
|
|
{
|
|
|
|
(void)idx;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool video_shader_driver_filter_type_null(void *data, unsigned idx, bool *smooth)
|
|
|
|
{
|
|
|
|
(void)idx;
|
|
|
|
(void)smooth;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned video_shader_driver_num_null(void *data)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool video_shader_driver_get_feedback_pass_null(void *data, unsigned *idx)
|
|
|
|
{
|
|
|
|
(void)idx;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void video_shader_driver_reset_to_defaults(void)
|
|
|
|
{
|
2018-01-26 03:14:44 +00:00
|
|
|
if (!current_shader)
|
|
|
|
return;
|
|
|
|
|
2017-05-18 12:47:24 +00:00
|
|
|
if (!current_shader->wrap_type)
|
2017-05-19 12:24:19 +00:00
|
|
|
current_shader->wrap_type = video_shader_driver_wrap_type_null;
|
2017-05-19 17:52:33 +00:00
|
|
|
if (current_shader->set_mvp)
|
|
|
|
video_driver_cb_shader_set_mvp = current_shader->set_mvp;
|
|
|
|
else
|
|
|
|
{
|
2017-11-15 13:24:16 +00:00
|
|
|
current_shader->set_mvp = video_driver_cb_set_mvp;
|
|
|
|
video_driver_cb_shader_set_mvp = video_driver_cb_set_mvp;
|
2017-05-19 17:52:33 +00:00
|
|
|
}
|
2017-05-19 19:21:40 +00:00
|
|
|
if (!current_shader->set_coords)
|
2017-11-15 13:24:16 +00:00
|
|
|
current_shader->set_coords = video_driver_cb_set_coords;
|
2017-11-13 11:27:45 +00:00
|
|
|
|
2017-05-19 13:59:28 +00:00
|
|
|
if (current_shader->use)
|
|
|
|
video_driver_cb_shader_use = current_shader->use;
|
2017-12-12 07:55:31 +00:00
|
|
|
else
|
2017-05-19 13:59:28 +00:00
|
|
|
{
|
2017-05-19 12:24:19 +00:00
|
|
|
current_shader->use = video_shader_driver_use_null;
|
2017-05-19 13:59:28 +00:00
|
|
|
video_driver_cb_shader_use = video_shader_driver_use_null;
|
|
|
|
}
|
2017-05-18 12:47:24 +00:00
|
|
|
if (!current_shader->set_params)
|
2017-05-19 12:24:19 +00:00
|
|
|
current_shader->set_params = video_shader_driver_set_params_null;
|
2017-05-18 12:47:24 +00:00
|
|
|
if (!current_shader->shader_scale)
|
|
|
|
current_shader->shader_scale = video_shader_driver_scale_null;
|
|
|
|
if (!current_shader->mipmap_input)
|
|
|
|
current_shader->mipmap_input = video_shader_driver_mipmap_input_null;
|
|
|
|
if (!current_shader->filter_type)
|
|
|
|
current_shader->filter_type = video_shader_driver_filter_type_null;
|
|
|
|
if (!current_shader->num_shaders)
|
|
|
|
current_shader->num_shaders = video_shader_driver_num_null;
|
|
|
|
if (!current_shader->get_current_shader)
|
|
|
|
current_shader->get_current_shader= video_shader_driver_get_current_shader_null;
|
|
|
|
if (!current_shader->get_feedback_pass)
|
|
|
|
current_shader->get_feedback_pass = video_shader_driver_get_feedback_pass_null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finds first suitable shader context driver. */
|
|
|
|
bool video_shader_driver_init_first(void)
|
|
|
|
{
|
|
|
|
current_shader = (shader_backend_t*)shader_ctx_drivers[0];
|
|
|
|
video_shader_driver_reset_to_defaults();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_init(video_shader_ctx_init_t *init)
|
|
|
|
{
|
|
|
|
void *tmp = NULL;
|
|
|
|
|
|
|
|
if (!init->shader || !init->shader->init)
|
|
|
|
{
|
|
|
|
init->shader = video_shader_set_backend(init->shader_type);
|
|
|
|
|
|
|
|
if (!init->shader)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = init->shader->init(init->data, init->path);
|
|
|
|
|
|
|
|
if (!tmp)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
shader_data = tmp;
|
|
|
|
current_shader = (shader_backend_t*)init->shader;
|
|
|
|
video_shader_driver_reset_to_defaults();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_get_feedback_pass(unsigned *data)
|
|
|
|
{
|
|
|
|
return current_shader->get_feedback_pass(shader_data, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_mipmap_input(unsigned *index)
|
|
|
|
{
|
|
|
|
return current_shader->mipmap_input(shader_data, *index);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_scale(video_shader_ctx_scale_t *scaler)
|
|
|
|
{
|
|
|
|
if (!scaler || !scaler->scale)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
scaler->scale->valid = false;
|
|
|
|
|
|
|
|
current_shader->shader_scale(shader_data, scaler->idx, scaler->scale);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_info(video_shader_ctx_info_t *shader_info)
|
|
|
|
{
|
|
|
|
if (!shader_info)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
shader_info->num = current_shader->num_shaders(shader_data);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_filter_type(video_shader_ctx_filter_t *filter)
|
|
|
|
{
|
2017-11-13 10:34:40 +00:00
|
|
|
if (filter)
|
2017-12-12 07:55:31 +00:00
|
|
|
return current_shader->filter_type(shader_data,
|
2017-11-13 10:34:40 +00:00
|
|
|
filter->index, filter->smooth);
|
|
|
|
return false;
|
2017-05-18 12:47:24 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 10:34:40 +00:00
|
|
|
bool video_shader_driver_compile_program(
|
|
|
|
struct shader_program_info *program_info)
|
2017-05-18 12:47:24 +00:00
|
|
|
{
|
2017-11-13 10:34:40 +00:00
|
|
|
if (program_info)
|
|
|
|
return current_shader->compile_program(program_info->data,
|
|
|
|
program_info->idx, NULL, program_info);
|
|
|
|
return false;
|
2017-05-18 12:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool video_shader_driver_wrap_type(video_shader_ctx_wrap_t *wrap)
|
|
|
|
{
|
|
|
|
wrap->type = current_shader->wrap_type(shader_data, wrap->idx);
|
|
|
|
return true;
|
|
|
|
}
|
2017-06-12 13:45:43 +00:00
|
|
|
|
2017-11-14 20:43:13 +00:00
|
|
|
void video_driver_set_coords(video_shader_ctx_coords_t *coords)
|
|
|
|
{
|
2017-11-15 13:24:16 +00:00
|
|
|
if (current_shader && current_shader->set_coords)
|
|
|
|
current_shader->set_coords(coords->handle_data, shader_data, (const struct video_coords*)coords->data);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (video_driver_poke && video_driver_poke->set_coords)
|
|
|
|
video_driver_poke->set_coords(coords->handle_data, shader_data, (const struct video_coords*)coords->data);
|
|
|
|
}
|
2017-11-14 20:43:13 +00:00
|
|
|
}
|
|
|
|
|
2017-11-14 20:22:44 +00:00
|
|
|
void video_driver_set_mvp(video_shader_ctx_mvp_t *mvp)
|
|
|
|
{
|
2017-11-15 13:16:06 +00:00
|
|
|
if (!mvp || !mvp->matrix)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (current_shader && current_shader->set_mvp)
|
2017-11-14 20:22:44 +00:00
|
|
|
current_shader->set_mvp(mvp->data, shader_data, mvp->matrix);
|
2017-11-15 13:16:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (video_driver_poke && video_driver_poke->set_mvp)
|
|
|
|
video_driver_poke->set_mvp(mvp->data, shader_data, mvp->matrix);
|
|
|
|
}
|
2017-11-14 20:22:44 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 10:34:40 +00:00
|
|
|
bool renderchain_d3d_init_first(
|
2018-01-23 03:25:37 +00:00
|
|
|
enum gfx_ctx_api api,
|
2017-11-13 10:34:40 +00:00
|
|
|
const d3d_renderchain_driver_t **renderchain_driver,
|
|
|
|
void **renderchain_handle)
|
2017-06-12 13:45:43 +00:00
|
|
|
{
|
2018-01-23 03:25:37 +00:00
|
|
|
switch (api)
|
2017-11-07 06:56:18 +00:00
|
|
|
{
|
2018-01-23 03:25:37 +00:00
|
|
|
case GFX_CTX_DIRECT3D9_API:
|
2018-01-23 01:55:33 +00:00
|
|
|
#ifdef HAVE_D3D9
|
|
|
|
{
|
|
|
|
static const d3d_renderchain_driver_t *renderchain_d3d_drivers[] = {
|
|
|
|
#if defined(_WIN32) && defined(HAVE_CG)
|
|
|
|
&cg_d3d9_renderchain,
|
|
|
|
#endif
|
|
|
|
#if defined(_WIN32) && defined(HAVE_HLSL)
|
|
|
|
&hlsl_d3d9_renderchain,
|
|
|
|
#endif
|
|
|
|
&null_d3d_renderchain,
|
|
|
|
NULL
|
|
|
|
};
|
2018-01-23 02:22:00 +00:00
|
|
|
unsigned i;
|
|
|
|
|
2018-01-23 01:55:33 +00:00
|
|
|
for (i = 0; renderchain_d3d_drivers[i]; i++)
|
|
|
|
{
|
|
|
|
void *data = renderchain_d3d_drivers[i]->chain_new();
|
2017-11-07 06:56:18 +00:00
|
|
|
|
2018-01-23 01:55:33 +00:00
|
|
|
if (!data)
|
|
|
|
continue;
|
2017-11-07 06:56:18 +00:00
|
|
|
|
2018-01-23 01:55:33 +00:00
|
|
|
*renderchain_driver = renderchain_d3d_drivers[i];
|
|
|
|
*renderchain_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
2018-01-23 03:25:37 +00:00
|
|
|
case GFX_CTX_NONE:
|
|
|
|
default:
|
2018-01-23 01:55:33 +00:00
|
|
|
break;
|
2017-11-07 06:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool renderchain_gl_init_first(
|
|
|
|
const gl_renderchain_driver_t **renderchain_driver,
|
|
|
|
void **renderchain_handle)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; renderchain_gl_drivers[i]; i++)
|
2017-06-12 13:45:43 +00:00
|
|
|
{
|
2017-11-07 06:56:18 +00:00
|
|
|
void *data = renderchain_gl_drivers[i]->chain_new();
|
2017-06-12 13:45:43 +00:00
|
|
|
|
|
|
|
if (!data)
|
|
|
|
continue;
|
|
|
|
|
2017-11-07 06:56:18 +00:00
|
|
|
*renderchain_driver = renderchain_gl_drivers[i];
|
2017-06-12 13:45:43 +00:00
|
|
|
*renderchain_handle = data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|