Added GLESv2 library to system. Made fixes to the host libOpenGLRender to compile and support GLESv2 (defined WITH_GLES2). Other fixes required to make GLESv2 to work. Change-Id: I9eb198e6092e7fa3550342c50929dd1714282cb3
14 lines
448 B
Makefile
14 lines
448 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
### GLESv2 implementation ###########################################
|
|
$(call emugl-begin-shared-library,libGLESv2_emulation)
|
|
$(call emugl-import,libOpenglSystemCommon libGLESv2_enc lib_renderControl_enc)
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=\"GLESv2_emulation\" -DGL_GLEXT_PROTOTYPES
|
|
|
|
LOCAL_SRC_FILES := gl2.cpp
|
|
LOCAL_STATIC_LIBRARIES += libqemu
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/egl
|
|
|
|
$(call emugl-end-module)
|