Home | History | Annotate | Download | only in wincommon

Lines Matching refs:iAttr

178 	int *iAttr;
219 iAttr = &iAttribs[0];
221 *iAttr++ = WGL_DRAW_TO_WINDOW_ARB;
222 *iAttr++ = GL_TRUE;
223 *iAttr++ = WGL_ACCELERATION_ARB;
224 *iAttr++ = WGL_FULL_ACCELERATION_ARB;
225 *iAttr++ = WGL_RED_BITS_ARB;
226 *iAttr++ = this->gl_config.red_size;
227 *iAttr++ = WGL_GREEN_BITS_ARB;
228 *iAttr++ = this->gl_config.green_size;
229 *iAttr++ = WGL_BLUE_BITS_ARB;
230 *iAttr++ = this->gl_config.blue_size;
233 *iAttr++ = WGL_ALPHA_BITS_ARB;
234 *iAttr++ = this->gl_config.alpha_size;
237 *iAttr++ = WGL_DOUBLE_BUFFER_ARB;
238 *iAttr++ = this->gl_config.double_buffer;
240 *iAttr++ = WGL_DEPTH_BITS_ARB;
241 *iAttr++ = this->gl_config.depth_size;
244 *iAttr++ = WGL_STENCIL_BITS_ARB;
245 *iAttr++ = this->gl_config.stencil_size;
249 *iAttr++ = WGL_ACCUM_RED_BITS_ARB;
250 *iAttr++ = this->gl_config.accum_red_size;
254 *iAttr++ = WGL_ACCUM_GREEN_BITS_ARB;
255 *iAttr++ = this->gl_config.accum_green_size;
259 *iAttr++ = WGL_ACCUM_BLUE_BITS_ARB;
260 *iAttr++ = this->gl_config.accum_blue_size;
264 *iAttr++ = WGL_ACCUM_ALPHA_BITS_ARB;
265 *iAttr++ = this->gl_config.accum_alpha_size;
269 *iAttr++ = WGL_STEREO_ARB;
270 *iAttr++ = GL_TRUE;
274 *iAttr++ = WGL_SAMPLE_BUFFERS_ARB;
275 *iAttr++ = this->gl_config.multisamplebuffers;
279 *iAttr++ = WGL_SAMPLES_ARB;
280 *iAttr++ = this->gl_config.multisamplesamples;
284 *iAttr++ = WGL_ACCELERATION_ARB;
285 *iAttr++ = (this->gl_config.accelerated ? WGL_GENERIC_ACCELERATION_ARB : WGL_NO_ACCELERATION_ARB);
288 *iAttr = 0;