Lines Matching defs:count
686 bind_image_textures(struct gl_context *ctx, GLuint first, GLuint count,
708 * one of the <count> binding points are invalid, that binding
716 for (i = 0; i < count; i++) {
795 _mesa_BindImageTextures_no_error(GLuint first, GLsizei count,
800 bind_image_textures(ctx, first, count, textures, true);
804 _mesa_BindImageTextures(GLuint first, GLsizei count, const GLuint *textures)
814 if (first + count > ctx->Const.MaxImageUnits) {
817 * "An INVALID_OPERATION error is generated if <first> + <count>
822 "glBindImageTextures(first=%u + count=%d > the value of "
824 first, count, ctx->Const.MaxImageUnits);
828 bind_image_textures(ctx, first, count, textures, false);