From 4c80f8df46e6c70c9954364609cd0103030fa2a6 Mon Sep 17 00:00:00 2001
From: Brian Paul <brian.paul@tungstengraphics.com>
Date: Tue, 17 May 2005 02:13:00 +0000
Subject: more work on _eglConfigToContextModesRec()

---
 src/egl/main/eglconfig.c | 7 ++++---
 src/egl/main/eglconfig.h | 6 +++++-
 2 files changed, 9 insertions(+), 4 deletions(-)

(limited to 'src')

diff --git a/src/egl/main/eglconfig.c b/src/egl/main/eglconfig.c
index 34195c5..31a91e5 100644
--- a/src/egl/main/eglconfig.c
+++ b/src/egl/main/eglconfig.c
@@ -19,7 +19,7 @@
 /**
  * Convert an _EGLConfig to a __GLcontextModes object.
  */
-static void
+void
 _eglConfigToContextModesRec(const _EGLConfig *config, __GLcontextModes *mode)
 {
    memset(mode, 0, sizeof(*mode));
@@ -33,8 +33,7 @@ _eglConfigToContextModesRec(const _EGLConfig *config, __GLcontextModes *mode)
    mode->greenBits = GET_CONFIG_ATTRIB(config, EGL_GREEN_SIZE);
    mode->blueBits = GET_CONFIG_ATTRIB(config, EGL_BLUE_SIZE);
    mode->alphaBits = GET_CONFIG_ATTRIB(config, EGL_ALPHA_SIZE);
-   mode->rgbBits = mode->redBits + mode->greenBits
-      + mode->blueBits + mode->alphaBits;
+   mode->rgbBits = GET_CONFIG_ATTRIB(config, EGL_BUFFER_SIZE);
 
    mode->depthBits = GET_CONFIG_ATTRIB(config, EGL_DEPTH_SIZE);
    mode->haveDepthBuffer = mode->depthBits > 0;
@@ -42,6 +41,8 @@ _eglConfigToContextModesRec(const _EGLConfig *config, __GLcontextModes *mode)
    mode->stencilBits = GET_CONFIG_ATTRIB(config, EGL_STENCIL_SIZE);
    mode->haveStencilBuffer = mode->stencilBits > 0;
 
+   /* no accum */
+
    mode->level = GET_CONFIG_ATTRIB(config, EGL_LEVEL);
    mode->samples = GET_CONFIG_ATTRIB(config, EGL_SAMPLES);
    mode->sampleBuffers = GET_CONFIG_ATTRIB(config, EGL_SAMPLE_BUFFERS);
diff --git a/src/egl/main/eglconfig.h b/src/egl/main/eglconfig.h
index 3ec8a75..f311e07 100644
--- a/src/egl/main/eglconfig.h
+++ b/src/egl/main/eglconfig.h
@@ -18,7 +18,7 @@ struct _egl_config
 };
 
 
-
+#define SET_CONFIG_ATTRIB(CONF, ATTR, VAL) ((CONF)->Attrib[(ATTR) - FIRST_ATTRIB] = VAL)
 #define GET_CONFIG_ATTRIB(CONF, ATTR) ((CONF)->Attrib[(ATTR) - FIRST_ATTRIB])
 
 
@@ -69,4 +69,8 @@ _eglFillInConfigs( _EGLConfig *configs,
 		const GLenum * db_modes, unsigned num_db_modes,
 		int visType );
                 
+extern void
+_eglConfigToContextModesRec(const _EGLConfig *config, __GLcontextModes *mode);
+
+
 #endif /* EGLCONFIG_INCLUDED */
-- 
cgit v1.1