Lines Matching defs:height
471 static const GLuint height = 8;
492 Texture::Storage(gl, GL_TEXTURE_2D, 1, GL_R8UI, width, height, 0);
546 static const GLuint height = 8;
551 GLubyte pixels[width * height];
552 for (GLuint i = 0; i < width * height; ++i)
559 Texture::SubImage(gl, GL_TEXTURE_2D, 0 /* level */, 0 /* x */, 0 /* y */, 0 /* z */, width, height, 0 /* depth */,
572 static const GLuint height = 8;
579 const GLint bufSizeValid = width * height * pixel_size;
582 gl.readnPixels(0, 0, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, bufSizeValid, pixelsValid);
586 for (unsigned int i = 0; i < width * height; ++i)
600 const GLint bufSizeInvalid = width * height * pixel_size - 1;
603 gl.readnPixels(0, 0, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, bufSizeInvalid, pixelsInvalid);