Home | History | Annotate | Download | only in functional

Lines Matching refs:maxNameLength

991 	glw::GLint				maxNameLength		= 0;
997 gl.getProgramInterfaceiv(program, programInterface, GL_MAX_NAME_LENGTH, &maxNameLength);
1002 maxNameLength
1007 buffer.resize(maxNameLength+1, '\0');
1013 gl.getProgramResourceName(program, programInterface, resourceNdx, maxNameLength, &written, &buffer[0]);
1133 glw::GLint maxNameLength = 0;
1136 gl.getProgramInterfaceiv(program, programInterface, GL_MAX_NAME_LENGTH, &maxNameLength);
1144 if (expectedMaxNameLength != maxNameLength)
1146 m_testCtx.getLog() << tcu::TestLog::Message << "Error, got " << maxNameLength << tcu::TestLog::EndMessage;