summaryrefslogtreecommitdiffstats
path: root/libs/hwui
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2011-12-12 16:50:13 -0800
committerRomain Guy <romainguy@google.com>2011-12-12 16:50:13 -0800
commitf44e66fcf70aa4a354deca72dfbd3b29c29302be (patch)
treea0ad778032fe70f89b07b55750c772f5edc84b79 /libs/hwui
parent3e263fac8c9c0e0fb242186b514a7af8efb40961 (diff)
downloadframeworks_base-f44e66fcf70aa4a354deca72dfbd3b29c29302be.zip
frameworks_base-f44e66fcf70aa4a354deca72dfbd3b29c29302be.tar.gz
frameworks_base-f44e66fcf70aa4a354deca72dfbd3b29c29302be.tar.bz2
Remove leftover debugging code
Change-Id: I1589af7991da36744071d5081daa24ebae5b4dfd
Diffstat (limited to 'libs/hwui')
-rw-r--r--libs/hwui/Program.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp
index db610b0..cb2a5fd 100644
--- a/libs/hwui/Program.cpp
+++ b/libs/hwui/Program.cpp
@@ -97,11 +97,6 @@ int Program::addAttrib(const char* name) {
int Program::bindAttrib(const char* name, ShaderBindings bindingSlot) {
glBindAttribLocation(mProgramId, bindingSlot, name);
- GLenum status = GL_NO_ERROR;
- while ((status = glGetError()) != GL_NO_ERROR) {
- LOGD("Program::GL error from OpenGLRenderer: 0x%x", status);
- }
-
mAttributes.add(name, bindingSlot);
return bindingSlot;
}