Lines Matching defs:config

412 __glXInitializeVisualConfigFromTags(struct glx_config * config, int count,
420 config->visualID = *bp++;
422 config->visualType = convert_from_x_visual_type(*bp++);
424 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
426 config->redBits = *bp++;
427 config->greenBits = *bp++;
428 config->blueBits = *bp++;
429 config->alphaBits = *bp++;
430 config->accumRedBits = *bp++;
431 config->accumGreenBits = *bp++;
432 config->accumBlueBits = *bp++;
433 config->accumAlphaBits = *bp++;
435 config->doubleBufferMode = *bp++;
436 config->stereoMode = *bp++;
438 config->rgbBits = *bp++;
439 config->depthBits = *bp++;
440 config->stencilBits = *bp++;
441 config->numAuxBuffers = *bp++;
442 config->level = *bp++;
445 /* AppleSGLX supports pixmap and pbuffers with all config. */
446 config->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
461 config-> tag = ( fbconfig_style_tags ) ? *bp++ : 1
469 config->renderType = *bp++ ? GLX_RGBA_BIT : GLX_COLOR_INDEX_BIT;
471 config->renderType = GLX_RGBA_BIT;
474 config->rgbBits = *bp++;
477 config->level = *bp++;
486 config->numAuxBuffers = *bp++;
489 config->redBits = *bp++;
492 config->greenBits = *bp++;
495 config->blueBits = *bp++;
498 config->alphaBits = *bp++;
501 config->depthBits = *bp++;
504 config->stencilBits = *bp++;
507 config->accumRedBits = *bp++;
510 config->accumGreenBits = *bp++;
513 config->accumBlueBits = *bp++;
516 config->accumAlphaBits = *bp++;
519 config->visualRating = *bp++;
522 config->visualType = *bp++;
525 config->transparentPixel = *bp++;
528 config->transparentIndex = *bp++;
531 config->transparentRed = *bp++;
534 config->transparentGreen = *bp++;
537 config->transparentBlue = *bp++;
540 config->transparentAlpha = *bp++;
543 config->visualID = *bp++;
546 config->drawableType = *bp++;
548 /* AppleSGLX supports pixmap and pbuffers with all config. */
549 config->drawableType |= GLX_WINDOW_BIT | GLX_PIXMAP_BIT | GLX_PBUFFER_BIT;
553 config->renderType = *bp++;
556 config->xRenderable = *bp++;
559 config->fbconfigID = *bp++;
562 config->maxPbufferWidth = *bp++;
565 config->maxPbufferHeight = *bp++;
568 config->maxPbufferPixels = *bp++;
572 config->optimalPbufferWidth = *bp++;
575 config->optimalPbufferHeight = *bp++;
578 config->visualSelectGroup = *bp++;
584 config->swapMethod = *bp++;
589 config->swapMethod = GLX_SWAP_UNDEFINED_OML;
595 config->sampleBuffers = *bp++;
598 config->samples = *bp++;
607 config->bindToTextureRgb = *bp++;
610 config->bindToTextureRgba = *bp++;
613 config->bindToMipmapTexture = *bp++;
616 config->bindToTextureTargets = *bp++;
619 config->yInverted = *bp++;
623 config->sRGBCapable = *bp++;
631 config->floatComponentsNV = *bp++;
662 /* Allocate memory for our config structure */
673 /* Read each config structure and convert it into our format */
684 * AppleSGLX supports windows, pixmaps, and pbuffers with all config.