0469dd6d55
This patch provides a framework for tracing GLES 1.0 and 2.0 functions. It is missing a lot of features, but here are the things it accomplishes: - Stop building the glesv2dbg library, and build the glestrace library instead. - Replace the hooks for glesv2dbg with the ones for glestrace. - Add the basics for the trace library. Currently, this traces all GL functions, but not all required data is sent for all the functions. As a result, it will not be possible to reconstruct the entire GL state on the host side. The files gltrace.pb.* and gltrace_api.* are both generated using the tools/genapi.py script. Change-Id: Id60a468f7278657f008bc6ea1df01f9bdfecfdd3
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
src/gltrace_api.cpp \
|
|
src/gltrace_context.cpp \
|
|
src/gltrace_egl.cpp \
|
|
src/gltrace_eglapi.cpp \
|
|
src/gltrace_fixup.cpp \
|
|
src/gltrace_hooks.cpp \
|
|
src/gltrace.pb.cpp \
|
|
src/gltrace_transport.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(LOCAL_PATH) \
|
|
$(LOCAL_PATH)/../ \
|
|
external/stlport/stlport \
|
|
external/protobuf/src \
|
|
external \
|
|
bionic
|
|
|
|
LOCAL_CFLAGS := -DGOOGLE_PROTOBUF_NO_RTTI
|
|
LOCAL_STATIC_LIBRARIES := libprotobuf-cpp-2.3.0-lite liblzf
|
|
LOCAL_SHARED_LIBRARIES := libcutils libutils libstlport
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_TLS_REGISTER),true)
|
|
LOCAL_CFLAGS += -DHAVE_ARM_TLS_REGISTER
|
|
endif
|
|
|
|
LOCAL_CFLAGS += -DLOG_TAG=\"libGLES_trace\"
|
|
|
|
# we need to access the private Bionic header <bionic_tls.h>
|
|
# on ARM platforms, we need to mirror the ARCH_ARM_HAVE_TLS_REGISTER
|
|
# behavior from the bionic Android.mk file
|
|
ifeq ($(TARGET_ARCH)-$(ARCH_ARM_HAVE_TLS_REGISTER),arm-true)
|
|
LOCAL_CFLAGS += -DHAVE_ARM_TLS_REGISTER
|
|
endif
|
|
LOCAL_C_INCLUDES += bionic/libc/private
|
|
|
|
LOCAL_MODULE:= libGLES_trace
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|