Integrate video_driver.c into retroarch.c

This commit is contained in:
twinaphex 2019-06-17 15:10:22 +02:00
parent 61879bc8e0
commit ee3208ac39
134 changed files with 4781 additions and 4848 deletions

View File

@ -23,7 +23,6 @@
"ios": "c",
"list": "c",
"input_driver.h": "c",
"video_driver.h": "c",
"menu_driver.h": "c",
"file_path.h": "c",
"unordered_map": "c",
@ -54,7 +53,6 @@
"verbosity.h": "c",
"retroarch.h": "c",
"menu_animation.h": "c",
"audio_driver.h": "c",
"netplay.h": "c",
"scaler.h": "c",
"deque": "c",
@ -71,4 +69,4 @@
"badges.h": "c"
},
"C_Cpp.dimInactiveRegions": false,
}
}

View File

@ -213,7 +213,6 @@ OBJ += frontend/frontend.o \
led/drivers/led_null.o \
gfx/video_coord_array.o \
gfx/video_display_server.o \
gfx/video_driver.o \
gfx/video_crt_switch.o \
wifi/wifi_driver.o \
configuration.o \

View File

@ -91,7 +91,6 @@
#include "ui/ui_companion_driver.h"
#include "tasks/task_content.h"
#include "tasks/tasks_internal.h"
#include "gfx/video_driver.h"
#include "list_special.h"
#include "core.h"

View File

@ -33,7 +33,6 @@
#endif
#include "file_path_special.h"
#include "gfx/video_driver.h"
#include "input/input_driver.h"
#include "configuration.h"
#include "content.h"

View File

@ -41,7 +41,6 @@
#include "msg_hash.h"
#include "managers/state_manager.h"
#include "verbosity.h"
#include "gfx/video_driver.h"
#include "retroarch.h"
#include "tasks/tasks_internal.h"

View File

@ -55,7 +55,6 @@
#include "record/record_driver.h"
#include "driver.h"
#include "performance_counters.h"
#include "gfx/video_driver.h"
#include "led/led_driver.h"
#include "midi/midi_driver.h"

View File

@ -37,7 +37,6 @@
#include "../frontend.h"
#include "../frontend_driver.h"
#include "../../gfx/video_driver.h"
#include "../../configuration.h"
#include "../../defaults.h"
#include "../../content.h"

View File

@ -45,9 +45,8 @@
#include "../frontend_driver.h"
#include "../../defaults.h"
#include "../../paths.h"
#include "../../verbosity.h"
#include "../../retroarch.h"
#include "../../gfx/video_driver.h"
#include "../../verbosity.h"
#include "hbl.h"
#include "wiiu_dbg.h"

View File

@ -1060,7 +1060,7 @@ static INLINE HRESULT D3D10CreateTexture2DShaderResourceView(
#include <retro_math.h>
#include <gfx/math/matrix_4x4.h>
#include "../video_driver.h"
#include "../../retroarch.h"
typedef struct d3d10_vertex_t
{

View File

@ -2426,7 +2426,7 @@ D3D11UnmapBuffer(D3D11DeviceContext device_context, D3D11Buffer buffer, UINT sub
#include <retro_math.h>
#include <gfx/math/matrix_4x4.h>
#include <libretro_d3d.h>
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../drivers_shader/slang_process.h"
typedef struct d3d11_vertex_t

View File

@ -1260,7 +1260,7 @@ D3D12GetGPUDescriptorHandleForHeapStart(D3D12DescriptorHeap descriptor_heap)
#include <gfx/math/matrix_4x4.h>
#include "../common/d3dcompiler_common.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../drivers_shader/slang_process.h"
typedef struct d3d12_vertex_t

View File

@ -22,7 +22,7 @@
#include <d3d8.h>
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
RETRO_BEGIN_DECLS

View File

@ -24,7 +24,7 @@
#include <d3d9.h>
#include "d3d_common.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#define D3D9_DECL_FVF_TEXCOORD(stream, offset, index) \

View File

@ -12,6 +12,8 @@
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <math.h>
#include <string/stdstring.h>
#include "../../configuration.h"

View File

@ -36,7 +36,7 @@
#include <retro_common_api.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -27,7 +27,7 @@
#include <retro_common_api.h>
#include <retro_inline.h>
#include "../video_driver.h"
#include "../../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -27,7 +27,7 @@
#include "../../configuration.h"
#include "../../verbosity.h"
#include "../../ui/ui_companion_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../frontend/frontend_driver.h"
#include "win32_common.h"

View File

@ -786,7 +786,7 @@ static INLINE HRESULT DXGICreateFactory2(DXGIFactory2* factory)
/* internal */
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../drivers_shader/glslang_util.h"
#define DXGI_COLOR_RGBA(r, g, b, a) (((UINT32)(a) << 24) | ((UINT32)(b) << 16) | ((UINT32)(g) << 8) | ((UINT32)(r) << 0))

View File

@ -26,7 +26,7 @@
#include <boolean.h>
#include <retro_common_api.h>
#include "../video_driver.h"
#include "../../retroarch.h"
#ifndef EGL_CONTEXT_FLAGS_KHR
#define EGL_CONTEXT_FLAGS_KHR 0x30FC

View File

@ -20,6 +20,7 @@
#include <retro_environment.h>
#include <retro_inline.h>
#include <gfx/math/matrix_4x4.h>
#if defined(__APPLE__)
#include <OpenGL/gl.h>
@ -33,7 +34,7 @@
#include <GL/glext.h>
#endif
#include "../video_driver.h"
#include "../../retroarch.h"
#define RARCH_GL1_INTERNAL_FORMAT32 GL_RGBA8
#define RARCH_GL1_TEXTURE_TYPE32 GL_BGRA_EXT

View File

@ -33,7 +33,7 @@
#include <formats/image.h>
#include "../video_coord_array.h"
#include "../video_driver.h"
#include "../../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -33,7 +33,7 @@
#include <formats/image.h>
#include "../video_coord_array.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../drivers_shader/shader_gl_core.h"
RETRO_BEGIN_DECLS

View File

@ -25,7 +25,7 @@
#include "../../defines/psp_defines.h"
#include "../../driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../video_coord_array.h"
typedef struct vita_menu_frame

View File

@ -46,7 +46,6 @@
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../font_driver.h"
#include "../video_driver.h"
#include "../drivers_shader/shader_vulkan.h"
#include "../include/vulkan/vulkan.h"

View File

@ -56,7 +56,7 @@
#include "../../input/input_keymaps.h"
#include "../video_thread_wrapper.h"
#include "../video_display_server.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include <shellapi.h>
#ifdef HAVE_MENU

View File

@ -34,7 +34,7 @@
#include <retro_common_api.h>
#include <retro_environment.h>
#include "../../driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#ifndef _XBOX
#include "../../ui/drivers/ui_win32_resource.h"

View File

@ -21,7 +21,7 @@
#include <boolean.h>
#include "../video_driver.h"
#include "../../retroarch.h"
extern Window g_x11_win;
extern Display *g_x11_dpy;

View File

@ -37,8 +37,8 @@
#include "../video_display_server.h"
#include "../common/win32_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../video_driver.h" /* needed to set refresh rate in set resolution */
#ifdef __ITaskbarList3_INTERFACE_DEFINED__
#define HAS_TASKBAR_EXT

View File

@ -36,7 +36,7 @@
#include "../video_display_server.h"
#include "../common/x11_common.h"
#include "../../configuration.h"
#include "../video_driver.h" /* needed to set refresh rate in set resolution */
#include "../../retroarch.h"
#include "../video_crt_switch.h" /* needed to set aspect for low res in linux */
#ifdef HAVE_XRANDR

View File

@ -29,7 +29,6 @@
#include "../../retroarch.h"
#include "../../managers/state_manager.h"
#include "../video_driver.h"
#include "../font_driver.h"
#include "../common/d3d_common.h"
#include "../common/win32_common.h"

View File

@ -36,7 +36,6 @@
#include "../../verbosity.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../video_driver.h"
#include "../font_driver.h"
#include "../common/win32_common.h"
#include "../../performance_counters.h"

View File

@ -20,7 +20,6 @@
#include <string/stdstring.h>
#include <file/file_path.h>
#include "../video_driver.h"
#include "../font_driver.h"
#include "../common/d3d_common.h"
#include "../common/win32_common.h"

View File

@ -36,9 +36,9 @@
#include "../common/d3d_common.h"
#include "../video_coord_array.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../dynamic.h"
#include "../../frontend/frontend_driver.h"
#include "../video_driver.h"
#ifdef HAVE_THREADS
#include "../video_thread_wrapper.h"

View File

@ -37,7 +37,6 @@
#include "../video_coord_array.h"
#include "../../configuration.h"
#include "../../dynamic.h"
#include "../video_driver.h"
#include "../../ui/ui_companion_driver.h"
#include "../../frontend/frontend_driver.h"

View File

@ -14,9 +14,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../video_driver.h"
#include "../../driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
static void *null_gfx_init(const video_info_t *video,

View File

@ -13,14 +13,14 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../video_driver.h"
#include "../../driver.h"
#include "../../verbosity.h"
#include <kernel.h>
#include <gsKit.h>
#include <gsInline.h>
#include "../../driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../libretro-common/include/libretro_gskit_ps2.h"
#define GS_TEXT GS_SETREG_RGBAQ(0x80,0x80,0x80,0x80,0x00) // turn white GS Screen

View File

@ -40,9 +40,9 @@
#include "SDL_syswm.h"
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
typedef struct sdl_menu_frame
{

View File

@ -29,7 +29,7 @@
#include <OpenGL/OpenGL.h>
#include <OpenGL/gl.h>
#include "../video_driver.h"
#include "../../retroarch.h"
typedef int CGSConnectionID;
typedef int CGSWindowID;

View File

@ -38,8 +38,8 @@
#include "../../ui/drivers/ui_cocoa.h"
#include "../../ui/drivers/cocoa/cocoa_common.h"
#include "../video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#ifdef HAVE_VULKAN
#include "../common/vulkan_common.h"

View File

@ -26,7 +26,7 @@
#include "../../config.h"
#endif
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#ifdef HAVE_EGL

View File

@ -34,11 +34,11 @@
#include "../../config.h"
#endif
#include "../../configuration.h"
#include "../../dynamic.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../frontend/frontend_driver.h"
#include "../video_driver.h"
#include "../common/win32_common.h"

View File

@ -16,7 +16,7 @@
/* Null context. */
#include "../video_driver.h"
#include "../../retroarch.h"
static void gfx_ctx_null_swap_interval(void *data, int interval)
{

View File

@ -58,7 +58,8 @@ static void gfx_ctx_khr_display_get_video_size(void *data,
*height = khr->height;
}
static void *gfx_ctx_khr_display_init(video_frame_info_t *video_info, void *video_driver)
static void *gfx_ctx_khr_display_init(video_frame_info_t *video_info,
void *video_driver)
{
khr_display_ctx_data_t *khr = (khr_display_ctx_data_t*)calloc(1, sizeof(*khr));
if (!khr)

View File

@ -92,7 +92,8 @@ static void gfx_ctx_mali_fbdev_get_video_size(void *data,
*height = mali->height;
}
static void *gfx_ctx_mali_fbdev_init(video_frame_info_t *video_info, void *video_driver)
static void *gfx_ctx_mali_fbdev_init(video_frame_info_t *video_info,
void *video_driver)
{
#ifdef HAVE_EGL
EGLint n;

View File

@ -33,11 +33,11 @@
#include <compat/strl.h>
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../defines/ps3_defines.h"
#include "../../frontend/frontend_driver.h"
#include "../common/gl_common.h"
#include "../video_driver.h"
typedef struct gfx_ctx_ps3_data
{

View File

@ -23,9 +23,9 @@
#include "../../configuration.h"
#include "../../dynamic.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../ui/ui_companion_driver.h"
#include "../video_driver.h"
#if defined(_WIN32) && !defined(_XBOX)
#include "../common/win32_common.h"

View File

@ -33,7 +33,7 @@
#include <retro_inline.h>
#include "../../configuration.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../frontend/frontend_driver.h"

View File

@ -41,9 +41,9 @@
#include "../../configuration.h"
#include "../../dynamic.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../frontend/frontend_driver.h"
#include "../video_driver.h"
#include "../common/win32_common.h"

View File

@ -24,11 +24,11 @@
#include <retro_math.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../common/ctr_common.h"
#include "../drivers/ctr_gu.h"
#include "../../ctr/gpu_old.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* FIXME: this is just a workaround to avoid

View File

@ -23,9 +23,9 @@
#include <encodings/utf.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../common/d3d10_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct

View File

@ -22,9 +22,9 @@
#include <encodings/utf.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../common/d3d11_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct

View File

@ -22,9 +22,9 @@
#include <encodings/utf.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../common/d3d12_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct

View File

@ -25,8 +25,8 @@
#endif
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../common/gdi_common.h"
#include "../common/win32_common.h"

View File

@ -23,7 +23,7 @@
#include "../common/gl1_common.h"
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* TODO: Move viewport side effects to the caller: it's a source of bugs. */

View File

@ -24,7 +24,7 @@
#include "../common/gl_core_common.h"
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* TODO: Move viewport side effects to the caller: it's a source of bugs. */

View File

@ -23,7 +23,7 @@
#include "../common/gl_common.h"
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* TODO: Move viewport side effects to the caller: it's a source of bugs. */

View File

@ -24,8 +24,8 @@
#include <retro_math.h>
#include "../font_driver.h"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../common/switch_common.h"

View File

@ -21,13 +21,13 @@
#include <encodings/utf.h>
#include <wiiu/gx2.h>
#include "gfx/font_driver.h"
#include "gfx/video_driver.h"
#include "gfx/common/gx2_common.h"
#include "system/memory.h"
#include "wiiu/wiiu_dbg.h"
#include "../font_driver.h"
#include "../common/gx2_common.h"
#include "../../wiiu/system/memory.h"
#include "../../wiiu/wiiu_dbg.h"
#include "verbosity.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct
{

View File

@ -17,6 +17,7 @@
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
#include <ft2build.h>

View File

@ -34,8 +34,8 @@
#include "../common/d3d_common.h"
#include "../drivers/d3d_shaders/opaque.cg.d3d9.h"
#include "../video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "d3d9_renderchain.h"

View File

@ -32,8 +32,6 @@
#include "../common/d3d_common.h"
#include "../common/d3d9_common.h"
#include "../video_driver.h"
#include "../video_shader_parse.h"
#include "../../managers/state_manager.h"
#include "../../configuration.h"

View File

@ -45,9 +45,9 @@
#include "../include/Cg/cg.h"
#include "../video_driver.h"
#include "../video_shader_parse.h"
#include "../../core.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../managers/state_manager.h"

View File

@ -20,6 +20,7 @@
#include <memory>
#include <functional>
#include <utility>
#include <math.h>
#include <string.h>
#include <compat/strl.h>
@ -30,7 +31,7 @@
#include "slang_reflection.hpp"
#include "spirv_glsl.hpp"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../msg_hash.h"

View File

@ -18,7 +18,8 @@
#define __RARCH_GLSL_H
#include <boolean.h>
#include "../video_driver.h"
#include "../../retroarch.h"
void gl_glsl_set_get_proc_address(gfx_ctx_proc_t (*proc)(const char*));

View File

@ -30,7 +30,7 @@
#include "slang_reflection.h"
#include "slang_reflection.hpp"
#include "../video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../msg_hash.h"

View File

@ -18,7 +18,8 @@
#include <boolean.h>
#include <retro_common_api.h>
#include "../video_driver.h"
#include "../../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -15,6 +15,7 @@
*/
#include <stdlib.h>
#include <math.h>
#ifdef HAVE_CONFIG_H
#include "../config.h"
@ -24,6 +25,7 @@
#include "video_thread_wrapper.h"
#include "../configuration.h"
#include "../retroarch.h"
#include "../verbosity.h"
static const font_renderer_driver_t *font_backends[] = {

View File

@ -22,7 +22,7 @@
#include <boolean.h>
#include <retro_common_api.h>
#include "video_driver.h"
#include "../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -20,7 +20,7 @@
#include <string.h>
#include <stdlib.h>
#include "video_driver.h"
#include "../retroarch.h"
#include "video_crt_switch.h"
#include "video_display_server.h"

View File

@ -17,7 +17,7 @@
#include <stdio.h>
#include "video_display_server.h"
#include "video_driver.h"
#include "../retroarch.h"
#include "../verbosity.h"
static const video_display_server_t *current_display_server = &dispserv_null;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,14 +1,14 @@
#include "video_layout.h"
#include "video_layout/view.h"
#include "video_driver.h"
#include <stdlib.h>
#include <string.h>
#include <formats/rxml.h>
#include <file/file_path.h>
#include <file/archive_file.h>
#include <compat/strl.h>
#include <verbosity.h>
#include "video_layout.h"
#include "video_layout/view.h"
#include "../retroarch.h"
bool load(view_array_t *view_array, rxml_document_t *doc);
typedef struct io

View File

@ -31,11 +31,11 @@
#include <streams/interface_stream.h>
#include <lists/string_list.h>
#include "../verbosity.h"
#include "../configuration.h"
#include "../retroarch.h"
#include "../verbosity.h"
#include "../frontend/frontend_driver.h"
#include "../command.h"
#include "video_driver.h"
#include "video_shader_parse.h"
#if defined(HAVE_SLANG) && defined(HAVE_SPIRV_CROSS)

View File

@ -17,6 +17,7 @@
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <math.h>
#include <compat/strl.h>
#include <features/features_cpu.h>

View File

@ -22,7 +22,6 @@
#include <boolean.h>
#include <retro_common_api.h>
#include "video_driver.h"
#include "font_driver.h"
RETRO_BEGIN_DECLS

View File

@ -885,7 +885,6 @@ MIDI
/*============================================================
DRIVERS
============================================================ */
#include "../gfx/video_driver.c"
#include "../gfx/video_crt_switch.c"
#include "../gfx/video_display_server.c"
#include "../gfx/video_coord_array.c"

View File

@ -37,12 +37,12 @@
#include "../../command.h"
#include "../../frontend/drivers/platform_unix.h"
#include "../../gfx/video_driver.h"
#include "../drivers_keyboard/keyboard_event_android.h"
#include "../../tasks/tasks_internal.h"
#include "../../performance_counters.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#define MAX_TOUCH 16
#define MAX_NUM_KEYBOARDS 3

View File

@ -28,7 +28,7 @@
#include "cocoa_input.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../../driver.h"
#include "../drivers_keyboard/keyboard_event_apple.h"

View File

@ -48,9 +48,8 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* Keep track of which pad indexes are 360 controllers.

View File

@ -29,7 +29,7 @@
#include "../input_driver.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../../tasks/tasks_internal.h"
#include "../../command.h"

View File

@ -29,9 +29,9 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../../tasks/tasks_internal.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button */

View File

@ -27,7 +27,7 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../tasks/tasks_internal.h"

View File

@ -69,10 +69,10 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../common/linux_common.h"
#include "../../configuration.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#if defined(HAVE_XKBCOMMON) && defined(HAVE_KMS)

View File

@ -40,11 +40,11 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../common/linux_common.h"
#include "../../gfx/common/wayland_common.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
/* TODO/FIXME -

View File

@ -19,7 +19,7 @@
#include "../input_keymaps.h"
#include "../../configuration.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct

View File

@ -27,10 +27,10 @@
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../gfx/video_driver.h"
#include "../common/input_x11_common.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
typedef struct x11_input

View File

@ -30,9 +30,9 @@
#endif
#include "../../tasks/tasks_internal.h"
#include "../../gfx/video_driver.h"
#include "../input_driver.h"
#include "../input_keymaps.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "dinput_joypad.h"

View File

@ -42,7 +42,6 @@
#include "../../../config.h"
#endif /* HAVE_CONFIG_H */
#include "../../../gfx/video_driver.h"
#include "../../../tasks/tasks_internal.h"
#define WIIMOTE_TYPE_WIIPLUS 0x00

View File

@ -30,8 +30,8 @@
#include "../menu/menu_driver.h"
#endif
#include "../retroarch.h"
#include "../verbosity.h"
#include "../gfx/video_driver.h"
#include "input_overlay.h"
#define OVERLAY_GET_KEY(state, key) (((state)->keys[(key) / 32] >> ((key) % 32)) & 1)

View File

@ -2,11 +2,12 @@
#include "../led_driver.h"
#include "../led_defines.h"
#include "../../input/input_overlay.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"
#include "../../gfx/video_driver.h"
#include "../../input/input_overlay.h"
typedef struct
{

View File

@ -38,7 +38,6 @@
#include "list_special.h"
#include "frontend/frontend_driver.h"
#include "core_info.h"
#include "gfx/video_driver.h"
#include "input/input_driver.h"
#include "record/record_driver.h"
#include "midi/midi_driver.h"

View File

@ -23,7 +23,7 @@
#include <retro_common_api.h>
#include <lists/string_list.h>
#include "../gfx/video_driver.h"
#include "../../retroarch.h"
RETRO_BEGIN_DECLS

View File

@ -36,7 +36,6 @@
#include "../../managers/cheat_manager.h"
#include "../../file_path_special.h"
#include "../../driver.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../../network/netplay/netplay.h"

View File

@ -36,8 +36,6 @@
#include "../../retroarch.h"
#include "../../performance_counters.h"
#include "../../gfx/video_driver.h"
#include "../../input/input_driver.h"
#include "../../input/input_remapping.h"

View File

@ -40,8 +40,6 @@
#include "../menu_setting.h"
#include "../widgets/menu_input_dialog.h"
#include "../../gfx/video_driver.h"
#include "../../configuration.h"
#include "../../retroarch.h"
#include "../../verbosity.h"

View File

@ -21,7 +21,7 @@
#include "../../config.def.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_driver.h"
#include "../../retroarch.h"
#include "../menu_driver.h"

View File

@ -23,7 +23,6 @@
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_driver.h"
#include "../../gfx/common/ctr_common.h"
#include "../../gfx/drivers/ctr_gu.h"
#include "../../ctr/gpu_old.h"

View File

@ -26,7 +26,6 @@
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_driver.h"
#include "../../gfx/common/d3d10_common.h"
static const float* menu_display_d3d10_get_default_vertices(void)

View File

@ -25,7 +25,6 @@
#include "../../retroarch.h"
#include "../../gfx/font_driver.h"
#include "../../gfx/video_driver.h"
#include "../../gfx/common/d3d11_common.h"
static const float* menu_display_d3d11_get_default_vertices(void)

Some files were not shown because too many files have changed in this diff Show More