Lines Matching refs:unit
563 bool CheckBinding(GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access,
569 glGetIntegeri_v(GL_IMAGE_BINDING_NAME, unit, &i);
577 glGetIntegeri_v(GL_IMAGE_BINDING_LEVEL, unit, &i);
585 glGetIntegeri_v(GL_IMAGE_BINDING_LAYERED, unit, &i);
586 glGetBooleani_v(GL_IMAGE_BINDING_LAYERED, unit, &b);
594 glGetIntegeri_v(GL_IMAGE_BINDING_LAYER, unit, &i);
602 glGetIntegeri_v(GL_IMAGE_BINDING_ACCESS, unit, &i);
610 glGetIntegeri_v(GL_IMAGE_BINDING_FORMAT, unit, &i);
1156 GLuint unit = 2;
1164 glBindImageTexture(unit, texture, 0, GL_FALSE, 0, GL_WRITE_ONLY, internalformat);
1189 << ". Format is: " << FormatEnumToString(internalformat).c_str() << ". Unit is: " << unit << "."
1284 GLuint unit = 0;
1290 glBindImageTexture(unit, texture, 0, GL_FALSE, 0, GL_WRITE_ONLY, internalformat);
1315 << ". Format is: " << FormatEnumToString(internalformat).c_str() << ". Unit is: " << unit << "."
1441 GLuint unit = 1;
1457 glBindImageTexture(unit, texture, 0, GL_FALSE, 0, GL_READ_ONLY, internalformat);
1476 << ". Format is: " << FormatEnumToString(internalformat).c_str() << ". Unit is: " << unit << "."
1582 GLuint unit = 1;
1596 glBindImageTexture(unit, texture, 0, GL_FALSE, 0, GL_READ_ONLY, internalformat);
1614 << ". Format is: " << FormatEnumToString(internalformat).c_str() << ". Unit is: " << unit << "."
5169 << tcu::TestLog::Message << "BindImageTexture should generate INVALID_VALUE if <unit> "