mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 05:43:34 +00:00
Move some files around
This commit is contained in:
parent
09b25e54c5
commit
8111567d3e
@ -113,7 +113,7 @@ OBJ += frontend/frontend.o \
|
|||||||
libretro-sdk/queues/message_queue.o \
|
libretro-sdk/queues/message_queue.o \
|
||||||
rewind.o \
|
rewind.o \
|
||||||
gfx/gfx_common.o \
|
gfx/gfx_common.o \
|
||||||
gfx/fonts/bitmapfont.o \
|
gfx/drivers_font_renderer/bitmapfont.o \
|
||||||
input/input_autodetect.o \
|
input/input_autodetect.o \
|
||||||
input/input_joypad_driver.o \
|
input/input_joypad_driver.o \
|
||||||
input/input_joypad.o \
|
input/input_joypad.o \
|
||||||
@ -138,7 +138,7 @@ OBJ += frontend/frontend.o \
|
|||||||
libretro-sdk/gfx/scaler/scaler_int.o \
|
libretro-sdk/gfx/scaler/scaler_int.o \
|
||||||
libretro-sdk/gfx/scaler/scaler_filter.o \
|
libretro-sdk/gfx/scaler/scaler_filter.o \
|
||||||
gfx/image/image_rpng.o \
|
gfx/image/image_rpng.o \
|
||||||
gfx/fonts/fonts.o \
|
gfx/font_renderer_driver.o \
|
||||||
gfx/video_filter.o \
|
gfx/video_filter.o \
|
||||||
audio/audio_resampler_driver.o \
|
audio/audio_resampler_driver.o \
|
||||||
audio/dsp_filter.o \
|
audio/dsp_filter.o \
|
||||||
@ -307,7 +307,7 @@ ifeq ($(HAVE_MENU_COMMON), 1)
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(HAVE_FREETYPE), 1)
|
ifeq ($(HAVE_FREETYPE), 1)
|
||||||
OBJ += gfx/fonts/freetype.o
|
OBJ += gfx/drivers_font_renderer/freetype.o
|
||||||
LIBS += $(FREETYPE_LIBS)
|
LIBS += $(FREETYPE_LIBS)
|
||||||
DEFINES += $(FREETYPE_CFLAGS)
|
DEFINES += $(FREETYPE_CFLAGS)
|
||||||
endif
|
endif
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include <gfx/scaler/scaler.h>
|
#include <gfx/scaler/scaler.h>
|
||||||
#include "../gfx_common.h"
|
#include "../gfx_common.h"
|
||||||
#include "../video_context_driver.h"
|
#include "../video_context_driver.h"
|
||||||
#include "../fonts/fonts.h"
|
#include "../font_renderer_driver.h"
|
||||||
|
|
||||||
#ifdef HAVE_X11
|
#ifdef HAVE_X11
|
||||||
#include "../drivers_context/x11_common.h"
|
#include "../drivers_context/x11_common.h"
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include "../gfx_common.h"
|
#include "../gfx_common.h"
|
||||||
#include "../fonts/fonts.h"
|
#include "../font_renderer_driver.h"
|
||||||
|
|
||||||
#include "../drivers_context/x11_common.h"
|
#include "../drivers_context/x11_common.h"
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 192 KiB |
@ -14,7 +14,7 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fonts.h"
|
#include "../font_renderer_driver.h"
|
||||||
#include "bitmap.h"
|
#include "bitmap.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
@ -13,7 +13,7 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fonts.h"
|
#include "../font_renderer_driver.h"
|
||||||
#include "../../general.h"
|
#include "../../general.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
@ -14,7 +14,7 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fonts.h"
|
#include "../font_renderer_driver.h"
|
||||||
#include <file/file_path.h>
|
#include <file/file_path.h>
|
||||||
#include "../../general.h"
|
#include "../../general.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
@ -14,11 +14,11 @@
|
|||||||
* If not, see <http://www.gnu.org/licenses/>.
|
* If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fonts.h"
|
#include "font_renderer_driver.h"
|
||||||
#include "../../general.h"
|
#include "../general.h"
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "../../config.h"
|
#include "../config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const font_renderer_driver_t *font_backends[] = {
|
static const font_renderer_driver_t *font_backends[] = {
|
@ -18,7 +18,7 @@
|
|||||||
#define __GL_COMMON_H
|
#define __GL_COMMON_H
|
||||||
|
|
||||||
#include "../general.h"
|
#include "../general.h"
|
||||||
#include "fonts/fonts.h"
|
#include "font_renderer_driver.h"
|
||||||
#include <gfx/math/matrix_4x4.h>
|
#include <gfx/math/matrix_4x4.h>
|
||||||
#include <gfx/scaler/scaler.h>
|
#include <gfx/scaler/scaler.h>
|
||||||
#include "font_gl_driver.h"
|
#include "font_gl_driver.h"
|
||||||
|
@ -237,15 +237,15 @@ VIDEO DRIVER
|
|||||||
FONTS
|
FONTS
|
||||||
============================================================ */
|
============================================================ */
|
||||||
|
|
||||||
#include "../gfx/fonts/fonts.c"
|
#include "../gfx/font_renderer_driver.c"
|
||||||
#include "../gfx/fonts/bitmapfont.c"
|
#include "../gfx/drivers_font_renderer/bitmapfont.c"
|
||||||
|
|
||||||
#if defined(HAVE_FREETYPE)
|
#if defined(HAVE_FREETYPE)
|
||||||
#include "../gfx/fonts/freetype.c"
|
#include "../gfx/drivers_font_renderer/freetype.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
#include "../gfx/fonts/coretext.c"
|
#include "../gfx/drivers_font_renderer/coretext.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_OPENGL
|
#ifdef HAVE_OPENGL
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#define _MENU_DISP_LAKKA_H
|
#define _MENU_DISP_LAKKA_H
|
||||||
|
|
||||||
#include "../../gfx/gl_common.h"
|
#include "../../gfx/gl_common.h"
|
||||||
#include "../../gfx/fonts/fonts.h"
|
#include "../../gfx/font_renderer_driver.h"
|
||||||
|
|
||||||
#define THEME "monochrome" // flatui or monochrome themes are available
|
#define THEME "monochrome" // flatui or monochrome themes are available
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include <compat/posix_string.h>
|
#include <compat/posix_string.h>
|
||||||
#include <file/file_path.h>
|
#include <file/file_path.h>
|
||||||
|
|
||||||
#include "../../gfx/fonts/bitmap.h"
|
#include "../../gfx/drivers_font_renderer/bitmap.h"
|
||||||
|
|
||||||
#include "shared.h"
|
#include "shared.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user