(Android) Speed optimization

This commit is contained in:
twinaphex 2012-10-25 20:58:05 +02:00
parent c2674328ec
commit cfdfcd4b8e
2 changed files with 2 additions and 3 deletions

View File

@ -1,11 +1,12 @@
RARCH_VERSION = "0.9.7"
LOCAL_PATH := $(call my-dir)
PERF_TEST := 1
PERF_TEST := 0
include $(CLEAR_VARS)
ifeq ($(TARGET_ARCH),arm)
LOCAL_CFLAGS += -DANDROID_ARM -marm
LOCAL_ARM_MODE := arm
endif
ifeq ($(TARGET_ARCH),x86)

View File

@ -213,7 +213,6 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
static void gfx_ctx_update_window_title(bool reset)
{
(void)reset;
#if 0
if (reset)
gfx_window_title_reset();
@ -221,7 +220,6 @@ static void gfx_ctx_update_window_title(bool reset)
if (gfx_window_title(buf, sizeof(buf)))
RARCH_LOG("%s.\n", buf);
#endif
}
static void gfx_ctx_get_video_size(unsigned *width, unsigned *height)