Home
last modified time | relevance | path

Searched defs:gl_texture_image (Results 1 – 1 of 1) sorted by relevance

/third_party/mesa3d/src/mesa/main/
Dmtypes.h848 struct gl_texture_image struct
850 GLint InternalFormat; /**< Internal format as given by the user */
851 GLenum16 _BaseFormat; /**< Either GL_RGB, GL_RGBA, GL_ALPHA,
857 mesa_format TexFormat; /**< The actual texture memory format */
859 GLuint Border; /**< 0 or 1 */
860 GLuint Width; /**< = 2^WidthLog2 + 2*Border */
861 GLuint Height; /**< = 2^HeightLog2 + 2*Border */
862 GLuint Depth; /**< = 2^DepthLog2 + 2*Border */
863 GLuint Width2; /**< = Width - 2*Border */
864 GLuint Height2; /**< = Height - 2*Border */
[all …]