diff options
| author | 2011-12-12 16:50:55 -0800 | |
|---|---|---|
| committer | 2011-12-12 16:50:55 -0800 | |
| commit | d2ea737a1f28b43ce2e01686d64a5cf8243daa49 (patch) | |
| tree | 63b16f052dc6bc3fba457ca74d2aacd12ebd7e90 /libs/hwui/Program.cpp | |
| parent | ebb2c6b36da049b32c1dba6f14f16660d860eb09 (diff) | |
| parent | f44e66fcf70aa4a354deca72dfbd3b29c29302be (diff) | |
Merge "Remove leftover debugging code"
Diffstat (limited to 'libs/hwui/Program.cpp')
| -rw-r--r-- | libs/hwui/Program.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp index db610b03cef8..cb2a5fd2267e 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; } |