mirror of
https://github.com/libretro/RetroArch
synced 2025-03-18 04:21:19 +00:00
commit
69fb4414c9
@ -122,7 +122,7 @@ APP_ICON := pkg/libnx/retroarch.jpg
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
ARCH := -march=armv8-a -mtune=cortex-a57 -mtp=soft -fPIE -mcpu=cortex-a57+crc+fp+simd
|
ARCH := -march=armv8-a -mtune=cortex-a57 -mtp=soft -fPIE -mcpu=cortex-a57+crc+fp+simd
|
||||||
|
|
||||||
CFLAGS := -g -Wall -O3 -ffast-math -ffunction-sections \
|
CFLAGS := -g -Wall -O3 -fcommon -ffast-math -ffunction-sections \
|
||||||
$(ARCH) $(DEFINES) $(INCLUDE_DIRS) -I$(LIBNX)/include -I$(PORTLIBS)/include/ -include $(LIBNX)/include/switch.h #$(shell $(PORTLIBS)/bin/freetype-config --cflags)
|
$(ARCH) $(DEFINES) $(INCLUDE_DIRS) -I$(LIBNX)/include -I$(PORTLIBS)/include/ -include $(LIBNX)/include/switch.h #$(shell $(PORTLIBS)/bin/freetype-config --cflags)
|
||||||
|
|
||||||
CFLAGS += $(INCLUDE) -DSWITCH=1 -DHAVE_LIBNX=1 -DNXLINK=1 -DHAVE_SHADERPIPELINE -DHAVE_ONLINE_UPDATER -DHAVE_UPDATE_ASSETS -DHAVE_UPDATE_CORES -DHAVE_STB_FONT #-DHAVE_FREETYPE
|
CFLAGS += $(INCLUDE) -DSWITCH=1 -DHAVE_LIBNX=1 -DNXLINK=1 -DHAVE_SHADERPIPELINE -DHAVE_ONLINE_UPDATER -DHAVE_UPDATE_ASSETS -DHAVE_UPDATE_CORES -DHAVE_STB_FONT #-DHAVE_FREETYPE
|
||||||
|
@ -67,12 +67,13 @@ typedef unsigned resampler_simd_mask_t;
|
|||||||
|
|
||||||
struct resampler_data
|
struct resampler_data
|
||||||
{
|
{
|
||||||
double ratio;
|
|
||||||
const float *data_in;
|
const float *data_in;
|
||||||
float *data_out;
|
float *data_out;
|
||||||
|
|
||||||
size_t input_frames;
|
size_t input_frames;
|
||||||
size_t output_frames;
|
size_t output_frames;
|
||||||
|
|
||||||
|
double ratio;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Returns true if config key was found. Otherwise,
|
/* Returns true if config key was found. Otherwise,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user