Home | History | Annotate | Download | only in qt

Lines Matching defs:maxLength

960     GLint maxLength = 0;
961 m_internal->getProgramiv(program, GraphicsContext3D::ACTIVE_ATTRIBUTE_MAX_LENGTH, &maxLength);
963 GLchar* name = (GLchar*) fastMalloc(maxLength);
968 m_internal->getActiveAttrib(program, index, maxLength, &nameLength, &size, &type, name);
992 GLint maxLength = 0;
993 m_internal->getProgramiv(static_cast<GLuint>(program), GraphicsContext3D::ACTIVE_UNIFORM_MAX_LENGTH, &maxLength);
995 GLchar* name = (GLchar*) fastMalloc(maxLength);
1000 m_internal->getActiveUniform(static_cast<GLuint>(program), index, maxLength, &nameLength, &size, &type, name);