Major enhancements to the state web server. Added state-based shader instancing to avoid recompiles. Fixed issue #113 - Possible bug with REGAL_STATISTICS Corrected handling of GL_POINT_SIZE_MAX state in RegalState. Refreshed apitrace, civetweb, libpng, and GLEW from upstream.
13 lines
313 B
Makefile
13 lines
313 B
Makefile
#seth: need to specify this manually to get the latest
|
|
NDK_TOOLCHAIN_VERSION := 4.8
|
|
|
|
APP_MODULES := Regal_static Regal
|
|
APP_STL := stlport_static
|
|
APP_PLATFORM := android-9
|
|
|
|
ifndef APP_OPTIM
|
|
ifeq ($(NDK_DEBUG),1)
|
|
$(warning NDK_DEBUG set, enabling debug build: APP_OPTIM := debug)
|
|
APP_OPTIM := debug
|
|
endif
|
|
endif
|