Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f44e66fc authored by Romain Guy's avatar Romain Guy
Browse files

Remove leftover debugging code

Change-Id: I1589af7991da36744071d5081daa24ebae5b4dfd
parent 3e263fac
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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;
}