From 4b4aeec4452855dba8a65db5f93a1a0d55fa3cf5 Mon Sep 17 00:00:00 2001 From: Sergi Granell Date: Tue, 17 Jan 2017 18:57:44 +0100 Subject: [PATCH 1/2] (VITA) Use .c shaders --- Makefile.common | 14 ++++----- Makefile.griffin | 15 +++++----- deps/libvita2d/shader/clear_f_gxp.c | 21 +++++++++++++ deps/libvita2d/shader/clear_v_gxp.c | 23 ++++++++++++++ deps/libvita2d/shader/color_f_gxp.c | 19 ++++++++++++ deps/libvita2d/shader/color_v_gxp.c | 28 ++++++++++++++++++ deps/libvita2d/shader/compiled/clear_f_gxp.o | Bin 765 -> 0 bytes deps/libvita2d/shader/compiled/clear_v_gxp.o | Bin 792 -> 0 bytes deps/libvita2d/shader/compiled/color_f_gxp.o | Bin 744 -> 0 bytes deps/libvita2d/shader/compiled/color_v_gxp.o | Bin 872 -> 0 bytes .../libvita2d/shader/compiled/texture_f_gxp.o | Bin 762 -> 0 bytes .../shader/compiled/texture_tint_f_gxp.o | Bin 807 -> 0 bytes .../libvita2d/shader/compiled/texture_v_gxp.o | Bin 878 -> 0 bytes deps/libvita2d/shader/tetxure_f_gxp.c | 20 +++++++++++++ deps/libvita2d/shader/tetxure_tint_f_gxp.c | 24 +++++++++++++++ deps/libvita2d/shader/tetxure_v_gxp.c | 28 ++++++++++++++++++ deps/libvita2d/shader/texture_f_gxp.c | 20 +++++++++++++ deps/libvita2d/shader/texture_tint_f_gxp.c | 24 +++++++++++++++ deps/libvita2d/shader/texture_v_gxp.c | 28 ++++++++++++++++++ deps/libvita2d/source/vita2d.c | 28 +++++++++--------- 20 files changed, 264 insertions(+), 28 deletions(-) create mode 100644 deps/libvita2d/shader/clear_f_gxp.c create mode 100644 deps/libvita2d/shader/clear_v_gxp.c create mode 100644 deps/libvita2d/shader/color_f_gxp.c create mode 100644 deps/libvita2d/shader/color_v_gxp.c delete mode 100644 deps/libvita2d/shader/compiled/clear_f_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/clear_v_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/color_f_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/color_v_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/texture_f_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/texture_tint_f_gxp.o delete mode 100644 deps/libvita2d/shader/compiled/texture_v_gxp.o create mode 100644 deps/libvita2d/shader/tetxure_f_gxp.c create mode 100644 deps/libvita2d/shader/tetxure_tint_f_gxp.c create mode 100644 deps/libvita2d/shader/tetxure_v_gxp.c create mode 100644 deps/libvita2d/shader/texture_f_gxp.c create mode 100644 deps/libvita2d/shader/texture_tint_f_gxp.c create mode 100644 deps/libvita2d/shader/texture_v_gxp.c diff --git a/Makefile.common b/Makefile.common index 6902b10549d..8207a496fec 100644 --- a/Makefile.common +++ b/Makefile.common @@ -611,13 +611,13 @@ ifeq ($(HAVE_VITA2D), 1) $(DEPS_DIR)/libvita2d/source/vita2d_draw.o \ $(DEPS_DIR)/libvita2d/source/utils.o - OBJ += $(DEPS_DIR)/libvita2d/shader/compiled/clear_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/clear_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/color_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/color_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/texture_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/texture_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/compiled/texture_tint_f_gxp.o + OBJ += $(DEPS_DIR)/libvita2d/shader/clear_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/clear_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_tint_f_gxp.o ifeq ($(HAVE_MENU),1) OBJ += menu/drivers_display/menu_display_vita2d.o diff --git a/Makefile.griffin b/Makefile.griffin index 5c9d62ec3af..425fddbcefe 100644 --- a/Makefile.griffin +++ b/Makefile.griffin @@ -219,13 +219,14 @@ else ifeq ($(platform), vita) -lScePower_stub -lSceRtc_stub -lSceCommonDialog_stub -lScePgf_stub \ -lSceMotion_stub -lSceAppMgr_stub -lpng -lm -lc - PLATEXTRA := deps/libvita2d/shader/compiled/clear_v_gxp.o \ - deps/libvita2d/shader/compiled/clear_f_gxp.o \ - deps/libvita2d/shader/compiled/color_v_gxp.o \ - deps/libvita2d/shader/compiled/color_f_gxp.o \ - deps/libvita2d/shader/compiled/texture_v_gxp.o \ - deps/libvita2d/shader/compiled/texture_f_gxp.o \ - deps/libvita2d/shader/compiled/texture_tint_f_gxp.o + PLATEXTRA := $(DEPS_DIR)/libvita2d/shader/clear_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/clear_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_tint_f_gxp.o + PLATOBJS += \ libretro-common/audio/conversion/s16_to_float_neon.o \ libretro-common/audio/conversion/float_to_s16_neon.o \ diff --git a/deps/libvita2d/shader/clear_f_gxp.c b/deps/libvita2d/shader/clear_f_gxp.c new file mode 100644 index 00000000000..1019171f73b --- /dev/null +++ b/deps/libvita2d/shader/clear_f_gxp.c @@ -0,0 +1,21 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file clear_f.gxp */ +const long int clear_f_gxp_size = 236; +const unsigned char clear_f_gxp[236] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x42, 0xC5, 0x15, 0xBE, + 0xAA, 0xA6, 0x78, 0x8C, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x80, 0x19, 0xA0, + 0x7E, 0x0D, 0x84, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, + 0x00, 0x00, 0x00, 0xC5, 0x22, 0x04, 0x80, 0x38, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, + 0x10, 0x00, 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x75, 0x43, 0x6C, 0x65, 0x61, 0x72, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x00 +}; diff --git a/deps/libvita2d/shader/clear_v_gxp.c b/deps/libvita2d/shader/clear_v_gxp.c new file mode 100644 index 00000000000..4130fdd4a74 --- /dev/null +++ b/deps/libvita2d/shader/clear_v_gxp.c @@ -0,0 +1,23 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file clear_v.gxp */ +const long int clear_v_gxp_size = 264; +const unsigned char clear_v_gxp[264] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x06, 0x01, 0x00, 0x00, 0x31, 0x0F, 0x53, 0x68, + 0x27, 0x82, 0x90, 0xBD, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xC4, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x46, 0x52, 0x45, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x44, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x40, 0x09, 0x00, 0xF8, 0x01, 0x00, 0x24, 0x9F, + 0x88, 0x1F, 0xC5, 0x08, 0x00, 0x0F, 0x00, 0x03, 0x21, 0x05, 0x80, 0x38, 0x00, 0x0F, 0x04, 0x03, + 0x59, 0x05, 0x80, 0x38, 0x00, 0x00, 0x20, 0xA0, 0x00, 0x50, 0x27, 0xFB, 0x10, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x50, 0x6F, 0x73, + 0x69, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x00, 0x00 +}; diff --git a/deps/libvita2d/shader/color_f_gxp.c b/deps/libvita2d/shader/color_f_gxp.c new file mode 100644 index 00000000000..40cc0969654 --- /dev/null +++ b/deps/libvita2d/shader/color_f_gxp.c @@ -0,0 +1,19 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file color_f.gxp */ +const long int color_f_gxp_size = 208; +const unsigned char color_f_gxp[208] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0xD0, 0x00, 0x00, 0x00, 0x41, 0x94, 0xBB, 0xB6, + 0x66, 0x1E, 0xDD, 0x20, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0F, 0xA0, 0xD0, 0x0E, + 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, 0x02, 0x80, 0x19, 0xA0, 0x7E, 0x0D, 0x80, 0x40 +}; diff --git a/deps/libvita2d/shader/color_v_gxp.c b/deps/libvita2d/shader/color_v_gxp.c new file mode 100644 index 00000000000..443a87a40de --- /dev/null +++ b/deps/libvita2d/shader/color_v_gxp.c @@ -0,0 +1,28 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file color_v.gxp */ +const long int color_v_gxp_size = 340; +const unsigned char color_v_gxp[340] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x51, 0x01, 0x00, 0x00, 0xE2, 0xF2, 0xA7, 0xCC, + 0x01, 0x74, 0x8D, 0xD3, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, + 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x44, 0xFA, 0x80, 0x00, 0x08, 0x83, 0x21, 0x1D, 0x80, 0x38, 0x02, 0x80, 0x81, 0xAF, + 0x9C, 0x0D, 0xC0, 0x40, 0x0E, 0x86, 0xB9, 0xFF, 0xBC, 0x0D, 0xC0, 0x40, 0x04, 0x11, 0x49, 0xCF, + 0x80, 0x8F, 0xB1, 0x18, 0x02, 0x11, 0x45, 0xCF, 0x80, 0x8F, 0xB1, 0x18, 0x00, 0x11, 0x01, 0xC0, + 0x81, 0x81, 0xB1, 0x18, 0x01, 0xD1, 0x42, 0xC0, 0x81, 0x81, 0xB1, 0x18, 0x00, 0x00, 0x20, 0xA0, + 0x00, 0x50, 0x27, 0xFB, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x30, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, + 0x01, 0xE4, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x50, 0x6F, 0x73, + 0x69, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x61, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x00, 0x77, 0x76, 0x70, + 0x00, 0x00, 0x00, 0x00 +}; diff --git a/deps/libvita2d/shader/compiled/clear_f_gxp.o b/deps/libvita2d/shader/compiled/clear_f_gxp.o deleted file mode 100644 index bca3ed35fca0a79131ce86ebe5ec67b8aa5cc3fe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 765 zcmah_u};H440TFMCkhnPMsJS7?2uZVL*a`0qM9lM;l0!D!EE619ad+kQf;0 zPq6R}jC=q{Ob7}5k~$kCsI1`;=U!+)) zr@cTW=^v}zVJYd?QSIlA-RT+h-zCiG4)*U$@bXoe%aPRfr3m>Y?+(v-q(!LbE8dj^ z-tv?PM|_v_deFWYNTnk#REHl)tv%I^FbKOIZ-hcg-{*B1^>u)9J)TyV3Wr|n2rZx% OjRsn@5OtVf&qUv0{Z>!_ diff --git a/deps/libvita2d/shader/compiled/color_f_gxp.o b/deps/libvita2d/shader/compiled/color_f_gxp.o deleted file mode 100644 index 99acc76b100db335d202e8fedfd47512bd190a57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 744 zcmah{!AiqG5S^_lJ!vfp;!zOnsd(_{K``1&4}u;yW(Dg(1N{jRgnoj5 z;njl&f5WQ?I+N_yZ7&W?-kZtWH@llW9QBSFV_<_p8~!SQJ@cZ%Hq^nh(tnYBD3^@# z8}Y+%0_)U3UUT~IxTwII*3~gdw~E=sv|dQz3>W35M>?8Cx((AqDB~4%Tga@R)pgHL zfT20<>1p!(c(J|%j0_gy1?vRUo9&X7tS~x_I5OOVd!EQP5ibq5*fX_{Nc-A1bp_0$ z9-Y5AeOsa4E$xkv+kDz%Q&Fh`=on0J*( lWs-1T=GQtyyGR65ad(1D1AtB-w17@N9%|7?)T+YBuwVQ$Q%V2; diff --git a/deps/libvita2d/shader/compiled/color_v_gxp.o b/deps/libvita2d/shader/compiled/color_v_gxp.o deleted file mode 100644 index 53279ff00f0ab065a9b86731c33f58750bdc8cd2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 872 zcmah{Jxc>Y5S@z&NeW|53)2V&1cQZGSlDSWF(4@dDrmKAydyc1+=aXK6Tu6Dm0)9G zVc|azOTof_AcFru3tI~jRERToyBaNYVDe_(zInUZz5QZ&LDMu)p+OG5JAi4q5MmBu z5LMEDk$foor1ArCwZ~jJ#gUIl4Z$)tJ|fM)}|z$TcbnJ3I9W&#ESjxLK3vWIo4zeTuOvLY8ob}(#r4FyU*NC9!Z~f!T zOhhjR7}b+Eoz7(@cDEQH!00(t#@|zcXBvhO)42N-^>`n2KNJ)6BYS#-ET;Atz6UMw zisM&1RDoOs^pv fw5xN&bXo5XrfmRB8eDLg^mbZ;R}qC9VqI3B_Rer& diff --git a/deps/libvita2d/shader/compiled/texture_f_gxp.o b/deps/libvita2d/shader/compiled/texture_f_gxp.o deleted file mode 100644 index 8888b95ffb55dbbfc3fb77779a12cdce3abcbb4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 762 zcmah_Jx>Bb5S=|C*eNl_Ry!&hEiFturLi#4!fsi(6)wU-?v@0!kY8df{U;Xu0y_)- zfThMn-`wtUr-^Zr+4tt{o7s>1le1GH1o;ruprRr=a2pmIRHcfy{);?^bImzFflJ33 z{G=LqP|{z~G)K*SRV4d1ksC-q3zXVunmLVqd=~q5oCe6_1-?BnKhOJGSLY-!e2Kk> z?&9(8dA}{zZ4Y}m7@v>>WU#uW$n`li4uc%$tXRtLX%{kGI_@!a^&ybYvj6Nv+>TG; z_tU%8jsUxs+O-ybY~?J--yT$gd=5)SPp#+A)xXjk%C}~%{M%etRZrDX%sJ}x z_SFCuHRj_IW|C@oEql|k%#2FSZ!NynBs+1U(wRJ#G8}a$L!FpRsw9#Z+L$=$WguxU qmaSAJdN7co&Th;I1N$n{sr-40P9maaq>Q3wHX9n%0h-ie-?48*NmeWX diff --git a/deps/libvita2d/shader/compiled/texture_tint_f_gxp.o b/deps/libvita2d/shader/compiled/texture_tint_f_gxp.o deleted file mode 100644 index 18fb7f18c010c1f77590eff88c40636c7340fd7c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmaiy%}PQ+6vxll^`nJlw1{eB5#>rEYS%*gauXCK;vyKXcuT=lt|Mqf8T1nE-S+}6 ze1M=HqHT+I6+!*aof$GPI&kK9&YAx?Gv4ufcYjX^LDmGN=qDpuHyfHM3X@}{|B~mh zj~V4Bm>L>xCq+>Y84Y6zNf+e4Fr0M>_$1uULP$O6il)Xo9?iNLQv(8vplJb-oo98~ z!XXI^UqNAcQB_`Q4;vyDv?N%=#`k)HSK$stu(FBZUfm!jQeeZx7Tm|ickdbkftGp6 z3#_C;Cm{FaOs*jufwOo9z3a*VSk<9kqdOlQWX9<&)V;g!#|N2BavpE9y%_aplUMPZ z%tWAcXc}~IN)i;$`g`%#JUkSf#2Ha5SE;G(dbRG8^4hxg_iDeCRoGu{^WhicniISe zNBm!yLN;e&u1(SF*V?ZfBHTi?d`~LeOP#LC)l?#t#u~KvWj+8RLbx=6Y hAIWCf^}UiDG0Cgp4bml7xs+~p&XrpPm9JSg(Kn8#SCRk# diff --git a/deps/libvita2d/shader/compiled/texture_v_gxp.o b/deps/libvita2d/shader/compiled/texture_v_gxp.o deleted file mode 100644 index 71099b67a592f336c38899804f0c7d138501d841..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 878 zcmah`u}T9$5S@#O#v+nR)Ye@8&SKvS=6v=wmT0S+IV`JqEX}-PlrfUf7uHDAjjXCN>Xj7NpudOSbAdrf z=Oh9+S9qXMBGL?b&8XTJq@go>)mH&YSGE~I@@OO#%*KNH?NzEV*K>T|dO!qo{xLYa z8;Y5^5aVWdqh7xoN<1xx2rzsN`SJIj&@T=Bh-tiiigNu2kWRGaw1ZI$<0aY$wRqn3 zZE3p>@O4q$bY0Jaz1 zuw7QH?l50+PyVji`vO?OcDPq#3yfvm&C0fLq|dlxu{9y3?G$|^UeRVt9(P2!%(BAY hk}evSxFtOH^A_P)0FxG%947tRw&Vpw=|xyl>=PECbIkw% diff --git a/deps/libvita2d/shader/tetxure_f_gxp.c b/deps/libvita2d/shader/tetxure_f_gxp.c new file mode 100644 index 00000000000..c024e14d4d3 --- /dev/null +++ b/deps/libvita2d/shader/tetxure_f_gxp.c @@ -0,0 +1,20 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_f.gxp */ +const long int texture_f_gxp_size = 220; +const unsigned char texture_f_gxp[220] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x4D, 0xD2, 0xB7, 0x2A, + 0xF5, 0x56, 0x28, 0x8B, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, 0x10, 0x00, 0x00, 0x00, 0x02, 0x04, 0x02, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x65, 0x78, 0x00 +}; diff --git a/deps/libvita2d/shader/tetxure_tint_f_gxp.c b/deps/libvita2d/shader/tetxure_tint_f_gxp.c new file mode 100644 index 00000000000..3d142072219 --- /dev/null +++ b/deps/libvita2d/shader/tetxure_tint_f_gxp.c @@ -0,0 +1,24 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_tint_f.gxp */ +const long int texture_tint_f_gxp_size = 288; +const unsigned char texture_tint_f_gxp[288] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x1F, 0x01, 0x00, 0x00, 0xEA, 0xFC, 0xA0, 0xCB, + 0x79, 0x0C, 0xE6, 0xA5, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x40, 0x09, 0x00, 0xF8, + 0x02, 0x80, 0x99, 0xAF, 0xBC, 0x0D, 0xC0, 0x40, 0x3C, 0x00, 0x04, 0xCF, 0x84, 0x47, 0xA4, 0x08, + 0x00, 0xBC, 0x19, 0x20, 0x7E, 0x0D, 0x81, 0x40, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, + 0x20, 0x00, 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1B, 0x00, 0x00, 0x00, 0x02, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x75, 0x54, 0x69, 0x6E, 0x74, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x00, 0x74, 0x65, 0x78, 0x00, 0x00 +}; diff --git a/deps/libvita2d/shader/tetxure_v_gxp.c b/deps/libvita2d/shader/tetxure_v_gxp.c new file mode 100644 index 00000000000..d9fd24ee602 --- /dev/null +++ b/deps/libvita2d/shader/tetxure_v_gxp.c @@ -0,0 +1,28 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_v.gxp */ +const long int texture_v_gxp_size = 340; +const unsigned char texture_v_gxp[340] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x54, 0x01, 0x00, 0x00, 0x34, 0x73, 0xC9, 0xAD, + 0xE1, 0xC5, 0xBA, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, + 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xB0, 0x7E, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x44, 0xFA, 0x80, 0x00, 0x08, 0x83, 0x21, 0x0D, 0x80, 0x38, 0x02, 0x80, 0x81, 0xAF, + 0x9C, 0x0D, 0xC0, 0x40, 0x0E, 0x86, 0xB9, 0xFF, 0xBC, 0x0D, 0xC0, 0x40, 0x04, 0x11, 0x49, 0xCF, + 0x80, 0x8F, 0xB1, 0x18, 0x02, 0x11, 0x45, 0xCF, 0x80, 0x8F, 0xB1, 0x18, 0x00, 0x11, 0x01, 0xC0, + 0x81, 0x81, 0xB1, 0x18, 0x01, 0xD1, 0x42, 0xC0, 0x81, 0x81, 0xB1, 0x18, 0x00, 0x00, 0x20, 0xA0, + 0x00, 0x50, 0x27, 0xFB, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x30, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, + 0x01, 0xE4, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x50, 0x6F, 0x73, + 0x69, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x61, 0x54, 0x65, 0x78, 0x63, 0x6F, 0x6F, 0x72, 0x64, 0x00, + 0x77, 0x76, 0x70, 0x00 +}; diff --git a/deps/libvita2d/shader/texture_f_gxp.c b/deps/libvita2d/shader/texture_f_gxp.c new file mode 100644 index 00000000000..c024e14d4d3 --- /dev/null +++ b/deps/libvita2d/shader/texture_f_gxp.c @@ -0,0 +1,20 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_f.gxp */ +const long int texture_f_gxp_size = 220; +const unsigned char texture_f_gxp[220] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x4D, 0xD2, 0xB7, 0x2A, + 0xF5, 0x56, 0x28, 0x8B, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, 0x10, 0x00, 0x00, 0x00, 0x02, 0x04, 0x02, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x65, 0x78, 0x00 +}; diff --git a/deps/libvita2d/shader/texture_tint_f_gxp.c b/deps/libvita2d/shader/texture_tint_f_gxp.c new file mode 100644 index 00000000000..3d142072219 --- /dev/null +++ b/deps/libvita2d/shader/texture_tint_f_gxp.c @@ -0,0 +1,24 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_tint_f.gxp */ +const long int texture_tint_f_gxp_size = 288; +const unsigned char texture_tint_f_gxp[288] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x1F, 0x01, 0x00, 0x00, 0xEA, 0xFC, 0xA0, 0xCB, + 0x79, 0x0C, 0xE6, 0xA5, 0x01, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x04, 0x01, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x44, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x40, 0x09, 0x00, 0xF8, + 0x02, 0x80, 0x99, 0xAF, 0xBC, 0x0D, 0xC0, 0x40, 0x3C, 0x00, 0x04, 0xCF, 0x84, 0x47, 0xA4, 0x08, + 0x00, 0xBC, 0x19, 0x20, 0x7E, 0x0D, 0x81, 0x40, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, + 0x20, 0x00, 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x1B, 0x00, 0x00, 0x00, 0x02, 0x04, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x75, 0x54, 0x69, 0x6E, 0x74, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x00, 0x74, 0x65, 0x78, 0x00, 0x00 +}; diff --git a/deps/libvita2d/shader/texture_v_gxp.c b/deps/libvita2d/shader/texture_v_gxp.c new file mode 100644 index 00000000000..d9fd24ee602 --- /dev/null +++ b/deps/libvita2d/shader/texture_v_gxp.c @@ -0,0 +1,28 @@ +/* Generated by bin2c, do not edit manually */ + +/* Contents of file texture_v.gxp */ +const long int texture_v_gxp_size = 340; +const unsigned char texture_v_gxp[340] = { + 0x47, 0x58, 0x50, 0x00, 0x01, 0x04, 0x00, 0x00, 0x54, 0x01, 0x00, 0x00, 0x34, 0x73, 0xC9, 0xAD, + 0xE1, 0xC5, 0xBA, 0x45, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, + 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x06, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xB0, 0x7E, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x44, 0xFA, 0x80, 0x00, 0x08, 0x83, 0x21, 0x0D, 0x80, 0x38, 0x02, 0x80, 0x81, 0xAF, + 0x9C, 0x0D, 0xC0, 0x40, 0x0E, 0x86, 0xB9, 0xFF, 0xBC, 0x0D, 0xC0, 0x40, 0x04, 0x11, 0x49, 0xCF, + 0x80, 0x8F, 0xB1, 0x18, 0x02, 0x11, 0x45, 0xCF, 0x80, 0x8F, 0xB1, 0x18, 0x00, 0x11, 0x01, 0xC0, + 0x81, 0x81, 0xB1, 0x18, 0x01, 0xD1, 0x42, 0xC0, 0x81, 0x81, 0xB1, 0x18, 0x00, 0x00, 0x20, 0xA0, + 0x00, 0x50, 0x27, 0xFB, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x30, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, + 0x01, 0xE4, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x61, 0x50, 0x6F, 0x73, + 0x69, 0x74, 0x69, 0x6F, 0x6E, 0x00, 0x61, 0x54, 0x65, 0x78, 0x63, 0x6F, 0x6F, 0x72, 0x64, 0x00, + 0x77, 0x76, 0x70, 0x00 +}; diff --git a/deps/libvita2d/source/vita2d.c b/deps/libvita2d/source/vita2d.c index aeb2605cdbf..2192a2a3746 100644 --- a/deps/libvita2d/source/vita2d.c +++ b/deps/libvita2d/source/vita2d.c @@ -34,25 +34,25 @@ typedef struct vita2d_display_data { /* Extern */ -extern const SceGxmProgram clear_v_gxp_start; -extern const SceGxmProgram clear_f_gxp_start; -extern const SceGxmProgram color_v_gxp_start; -extern const SceGxmProgram color_f_gxp_start; -extern const SceGxmProgram texture_v_gxp_start; -extern const SceGxmProgram texture_f_gxp_start; -extern const SceGxmProgram texture_tint_f_gxp_start; +extern const SceGxmProgram clear_v_gxp; +extern const SceGxmProgram clear_f_gxp; +extern const SceGxmProgram color_v_gxp; +extern const SceGxmProgram color_f_gxp; +extern const SceGxmProgram texture_v_gxp; +extern const SceGxmProgram texture_f_gxp; +extern const SceGxmProgram texture_tint_f_gxp; /* Static variables */ static int pgf_module_was_loaded = 0; -static const SceGxmProgram *const clearVertexProgramGxp = &clear_v_gxp_start; -static const SceGxmProgram *const clearFragmentProgramGxp = &clear_f_gxp_start; -static const SceGxmProgram *const colorVertexProgramGxp = &color_v_gxp_start; -static const SceGxmProgram *const colorFragmentProgramGxp = &color_f_gxp_start; -static const SceGxmProgram *const textureVertexProgramGxp = &texture_v_gxp_start; -static const SceGxmProgram *const textureFragmentProgramGxp = &texture_f_gxp_start; -static const SceGxmProgram *const textureTintFragmentProgramGxp = &texture_tint_f_gxp_start; +static const SceGxmProgram *const clearVertexProgramGxp = &clear_v_gxp; +static const SceGxmProgram *const clearFragmentProgramGxp = &clear_f_gxp; +static const SceGxmProgram *const colorVertexProgramGxp = &color_v_gxp; +static const SceGxmProgram *const colorFragmentProgramGxp = &color_f_gxp; +static const SceGxmProgram *const textureVertexProgramGxp = &texture_v_gxp; +static const SceGxmProgram *const textureFragmentProgramGxp = &texture_f_gxp; +static const SceGxmProgram *const textureTintFragmentProgramGxp = &texture_tint_f_gxp; static int vita2d_initialized = 0; static float clear_color[4] = {0.0f, 0.0f, 0.0f, 1.0f}; From 610f69757f6de96c744008a35730da66d4c66537 Mon Sep 17 00:00:00 2001 From: Sergi Granell Date: Tue, 17 Jan 2017 20:54:22 +0100 Subject: [PATCH 2/2] Add DEPS_DIR to Makefile.griffin --- Makefile.griffin | 46 ++++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/Makefile.griffin b/Makefile.griffin index 425fddbcefe..34c05785e38 100644 --- a/Makefile.griffin +++ b/Makefile.griffin @@ -1,13 +1,15 @@ -DEBUG = 0 -HAVE_LOGGER = 0 -HAVE_FILE_LOGGER = 0 -HAVE_CC_RESAMPLER = 1 -WHOLE_ARCHIVE_LINK = 0 -BIG_STACK = 1 +ROOT_DIR := . +DEPS_DIR := $(ROOT_DIR)/deps +DEBUG = 0 +HAVE_LOGGER = 0 +HAVE_FILE_LOGGER = 0 +HAVE_CC_RESAMPLER = 1 +WHOLE_ARCHIVE_LINK = 0 +BIG_STACK = 1 PC_DEVELOPMENT_IP_ADDRESS = 255.255.255.255 PC_DEVELOPMENT_UDP_PORT = 3490 -RARCH_CONSOLE = 0 -USBGECKO = 0 +RARCH_CONSOLE = 0 +USBGECKO = 0 ifneq ($(EMSCRIPTEN),) platform = emscripten @@ -219,20 +221,20 @@ else ifeq ($(platform), vita) -lScePower_stub -lSceRtc_stub -lSceCommonDialog_stub -lScePgf_stub \ -lSceMotion_stub -lSceAppMgr_stub -lpng -lm -lc - PLATEXTRA := $(DEPS_DIR)/libvita2d/shader/clear_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/clear_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/color_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/color_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/texture_v_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/texture_f_gxp.o \ - $(DEPS_DIR)/libvita2d/shader/texture_tint_f_gxp.o - - PLATOBJS += \ - libretro-common/audio/conversion/s16_to_float_neon.o \ - libretro-common/audio/conversion/float_to_s16_neon.o \ - memory/neon/memcpy-neon.o \ - libretro-common/audio/resampler/drivers/sinc_resampler_neon.o \ - audio/drivers_resampler/cc_resampler_neon.o + PLATOBJS += $(DEPS_DIR)/libvita2d/shader/clear_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/clear_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/color_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_v_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_f_gxp.o \ + $(DEPS_DIR)/libvita2d/shader/texture_tint_f_gxp.o + + PLATOBJS += \ + libretro-common/audio/conversion/s16_to_float_neon.o \ + libretro-common/audio/conversion/float_to_s16_neon.o \ + memory/neon/memcpy-neon.o \ + libretro-common/audio/resampler/drivers/sinc_resampler_neon.o \ + audio/drivers_resampler/cc_resampler_neon.o LIBDIRS += -L. LDFLAGS += -Wl,-q