Lines Matching defs:xmesa_visual
74 struct xmesa_visual { struct
75 struct gl_config mesa_visual; /* Device independent visual parameters */
76 XMesaDisplay *display; /* The X11 display */
77 int screen, visualID;
78 int visualType;
79 XMesaVisualInfo visinfo; /* X's visual info (pointer to private copy) */
80 XVisualInfo *vishandle; /* Only used in fakeglx.c */
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];