mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-03 07:22:15 +00:00
61b0811501
GL_QUADS not supported on GLES - GL_UNPACK_ROW_LENGTH/GL_PACK_ROW_LENGTH not supported on GLES without extensions - all client state array stuff unsupported - - Query extensions and see if GL_UNPACK_ROW_LENGTH and GL_PACK_ROW_LENGTH are available (on Tegra SOCs they should)
15 lines
512 B
Makefile
15 lines
512 B
Makefile
RARCH_VERSION = "0.9.7"
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_MODULE := retroarch
|
|
LOCAL_SRC_FILES = ../../console/griffin/griffin.c ../../console/rzlib/rzlib.c
|
|
|
|
LOCAL_CFLAGS = -DANDROID -DHAVE_DYNAMIC -DHAVE_OPENGL -DHAVE_OPENGLES -DHAVE_OPENGLES2 -DHAVE_ZLIB -DINLINE=inline -DRARCH_CONSOLE -DLSB_FIRST -D__LIBRETRO__ -DHAVE_CONFIGFILE=1 -DHAVE_GRIFFIN=1 -DPACKAGE_VERSION=\"$(RARCH_VERSION)\" -Dmain=rarch_main -std=gnu99
|
|
|
|
LOCAL_LDLIBS := -lGLESv2
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|