Lines Matching defs:xmesa_visual
75 struct xmesa_visual { struct
76 struct gl_config mesa_visual; /* Device independent visual parameters */
77 XMesaDisplay *display; /* The X11 display */
78 int screen, visualID;
79 int visualType;
80 XMesaVisualInfo visinfo; /* X's visual info (pointer to private copy) */
81 GLint BitsPerPixel; /* True bits per pixel for XImages */
83 GLboolean ximage_flag; /* Use XImage for back buffer (not pixmap)? */
85 enum pixel_format dithered_pf; /* Pixel format when dithering */
86 enum pixel_format undithered_pf;/* Pixel format when not dithering */
88 GLfloat RedGamma; /* Gamma values, 1.0 is default */
89 GLfloat GreenGamma;
90 GLfloat BlueGamma;
93 GLint rshift, gshift, bshift;/* Pixel color component shifts */
94 GLubyte Kernel[16]; /* Dither kernel */
95 unsigned long RtoPixel[512]; /* RGB to pixel conversion */
96 unsigned long GtoPixel[512];
97 unsigned long BtoPixel[512];
98 GLubyte PixelToR[256]; /* Pixel to RGB conversion */
99 GLubyte PixelToG[256];
100 GLubyte PixelToB[256];