Lines Matching defs:count
1438 * count on the texture object and delete it if it's zero.
1872 bind_textures(struct gl_context *ctx, GLuint first, GLsizei count,
1891 * one of the <count> binding points are invalid, that binding
1899 for (i = 0; i < count; i++) {
1931 /* Unbind all textures in the range <first> through <first>+<count>-1 */
1932 for (i = 0; i < count; i++)
1939 _mesa_BindTextures_no_error(GLuint first, GLsizei count, const GLuint *textures)
1942 bind_textures(ctx, first, count, textures, true);
1947 _mesa_BindTextures(GLuint first, GLsizei count, const GLuint *textures)
1953 * "An INVALID_OPERATION error is generated if <first> + <count>
1957 if (first + count > ctx->Const.MaxCombinedTextureImageUnits) {
1959 "glBindTextures(first=%u + count=%d > the value of "
1961 first, count, ctx->Const.MaxCombinedTextureImageUnits);
1965 bind_textures(ctx, first, count, textures, false);