Move video_driver.c to gfx/
This commit is contained in:
parent
0e5a9f03fe
commit
7f484edc98
|
@ -98,7 +98,7 @@ OBJ += frontend/frontend.o \
|
||||||
libretro-sdk/file/file_path.o \
|
libretro-sdk/file/file_path.o \
|
||||||
hash.o \
|
hash.o \
|
||||||
audio/audio_driver.o \
|
audio/audio_driver.o \
|
||||||
video_driver.o \
|
gfx/video_driver.o \
|
||||||
driver.o \
|
driver.o \
|
||||||
settings.o \
|
settings.o \
|
||||||
settings_list.o \
|
settings_list.o \
|
||||||
|
|
2
driver.h
2
driver.h
|
@ -30,7 +30,7 @@
|
||||||
#include "frontend/frontend_context.h"
|
#include "frontend/frontend_context.h"
|
||||||
#include <retro_miscellaneous.h>
|
#include <retro_miscellaneous.h>
|
||||||
|
|
||||||
#include "video_driver.h"
|
#include "gfx/video_driver.h"
|
||||||
#include "audio/audio_driver.h"
|
#include "audio/audio_driver.h"
|
||||||
|
|
||||||
#include "menu/menu_driver.h"
|
#include "menu/menu_driver.h"
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <string/string_list.h>
|
#include <string/string_list.h>
|
||||||
#include "video_driver.h"
|
#include "video_driver.h"
|
||||||
#include "general.h"
|
#include "../general.h"
|
||||||
|
|
||||||
static const video_driver_t *video_drivers[] = {
|
static const video_driver_t *video_drivers[] = {
|
||||||
#ifdef HAVE_OPENGL
|
#ifdef HAVE_OPENGL
|
|
@ -21,13 +21,13 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <boolean.h>
|
#include <boolean.h>
|
||||||
#include "libretro.h"
|
#include "../libretro.h"
|
||||||
|
|
||||||
#include "input/input_context.h"
|
#include "../input/input_context.h"
|
||||||
#include "gfx/shader/shader_parse.h"
|
#include "../gfx/shader/shader_parse.h"
|
||||||
|
|
||||||
#ifdef HAVE_OVERLAY
|
#ifdef HAVE_OVERLAY
|
||||||
#include "input/overlay.h"
|
#include "../input/overlay.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
|
@ -496,7 +496,7 @@ AUDIO
|
||||||
/*============================================================
|
/*============================================================
|
||||||
DRIVERS
|
DRIVERS
|
||||||
============================================================ */
|
============================================================ */
|
||||||
#include "../video_driver.c"
|
#include "../gfx/video_driver.c"
|
||||||
#include "../audio/audio_driver.c"
|
#include "../audio/audio_driver.c"
|
||||||
#include "../driver.c"
|
#include "../driver.c"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue