Cleanup
Change-Id: Ie366390272724a2c1dfda99b0e85806b7a612744
This commit is contained in:
@@ -71,8 +71,6 @@ ifeq ($(USE_OPENGL_RENDERER),true)
|
||||
$(LOCAL_PATH)/../../include/utils \
|
||||
external/skia/src/core
|
||||
|
||||
include external/stlport/libstlport.mk
|
||||
|
||||
LOCAL_CFLAGS += -DUSE_OPENGL_RENDERER -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES
|
||||
LOCAL_CFLAGS += -Wno-unused-parameter
|
||||
LOCAL_MODULE_CLASS := SHARED_LIBRARIES
|
||||
@@ -80,16 +78,15 @@ ifeq ($(USE_OPENGL_RENDERER),true)
|
||||
LOCAL_MODULE := libhwui
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
include external/stlport/libstlport.mk
|
||||
|
||||
ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
|
||||
LOCAL_CFLAGS += -DANDROID_ENABLE_RENDERSCRIPT
|
||||
LOCAL_SHARED_LIBRARIES += libRS libRScpp libstlport
|
||||
LOCAL_SHARED_LIBRARIES += libRS libRScpp
|
||||
LOCAL_C_INCLUDES += \
|
||||
$(intermediates) \
|
||||
frameworks/rs/cpp \
|
||||
frameworks/rs \
|
||||
external/stlport/stlport \
|
||||
bionic/ \
|
||||
bionic/libstdc++/include
|
||||
frameworks/rs
|
||||
endif
|
||||
|
||||
ifndef HWUI_COMPILE_SYMBOLS
|
||||
|
||||
@@ -788,7 +788,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw bitmap %p src="RECT_STRING", dst="RECT_STRING,
|
||||
OP_LOG("Draw bitmap %p src=" RECT_STRING ", dst=" RECT_STRING,
|
||||
mBitmap, RECT_ARGS(mSrc), RECT_ARGS(mLocalBounds));
|
||||
}
|
||||
|
||||
@@ -978,7 +978,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw patch "RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
OP_LOG("Draw patch " RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
}
|
||||
|
||||
virtual const char* name() { return "DrawPatch"; }
|
||||
@@ -1060,7 +1060,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw Rect "RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
OP_LOG("Draw Rect " RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
}
|
||||
|
||||
virtual void onDefer(OpenGLRenderer& renderer, DeferInfo& deferInfo,
|
||||
@@ -1111,7 +1111,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw RoundRect "RECT_STRING", rx %f, ry %f", RECT_ARGS(mLocalBounds), mRx, mRy);
|
||||
OP_LOG("Draw RoundRect " RECT_STRING ", rx %f, ry %f", RECT_ARGS(mLocalBounds), mRx, mRy);
|
||||
}
|
||||
|
||||
virtual const char* name() { return "DrawRoundRect"; }
|
||||
@@ -1175,7 +1175,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw Oval "RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
OP_LOG("Draw Oval " RECT_STRING, RECT_ARGS(mLocalBounds));
|
||||
}
|
||||
|
||||
virtual const char* name() { return "DrawOval"; }
|
||||
@@ -1195,7 +1195,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw Arc "RECT_STRING", start %f, sweep %f, useCenter %d",
|
||||
OP_LOG("Draw Arc " RECT_STRING ", start %f, sweep %f, useCenter %d",
|
||||
RECT_ARGS(mLocalBounds), mStartAngle, mSweepAngle, mUseCenter);
|
||||
}
|
||||
|
||||
@@ -1232,7 +1232,7 @@ public:
|
||||
}
|
||||
|
||||
virtual void output(int level, uint32_t logFlags) const {
|
||||
OP_LOG("Draw Path %p in "RECT_STRING, mPath, RECT_ARGS(mLocalBounds));
|
||||
OP_LOG("Draw Path %p in " RECT_STRING, mPath, RECT_ARGS(mLocalBounds));
|
||||
}
|
||||
|
||||
virtual const char* name() { return "DrawPath"; }
|
||||
|
||||
Reference in New Issue
Block a user