diff options
author | David Reveman <[email protected]> | 2006-04-11 12:21:48 +0000 |
---|---|---|
committer | David Reveman <[email protected]> | 2006-04-11 12:21:48 +0000 |
commit | ba23f699f03e45a7519cb41cc853deba686ff8d9 (patch) | |
tree | e6426b2c7c47e82fc95caf22fb9d148245978119 /src/glx | |
parent | ea2b71106178280903935f784de8abdabd1ab50f (diff) |
FBConfig support for EXT_tfp
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/x11/glxext.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/glx/x11/glxext.c b/src/glx/x11/glxext.c index 14d5ffa4f96..d687a6f5ba9 100644 --- a/src/glx/x11/glxext.c +++ b/src/glx/x11/glxext.c @@ -595,6 +595,21 @@ __glXInitializeVisualConfigFromTags( __GLcontextModes *config, int count, case GLX_SAMPLES_SGIS: config->samples = *bp++; break; + case GLX_BIND_TO_TEXTURE_RGB_EXT: + config->bindToTextureRgb = *bp++; + break; + case GLX_BIND_TO_TEXTURE_RGBA_EXT: + config->bindToTextureRgba = *bp++; + break; + case GLX_BIND_TO_MIPMAP_TEXTURE_EXT: + config->bindToMipmapTexture = *bp++; + break; + case GLX_BIND_TO_TEXTURE_TARGETS_EXT: + config->bindToTextureTargets = *bp++; + break; + case GLX_Y_INVERTED_EXT: + config->yInverted = *bp++; + break; case None: i = count; break; |