From d9789b78610a814e0f694312ee7ddf8f9ad2403c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 16 May 2005 02:16:33 +0000 Subject: s/Atrib/Attrib/, set extension enable flags --- src/egl/drivers/demo/demo.c | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) (limited to 'src/egl/drivers') diff --git a/src/egl/drivers/demo/demo.c b/src/egl/drivers/demo/demo.c index a5cebb4afd..e1f85e774f 100644 --- a/src/egl/drivers/demo/demo.c +++ b/src/egl/drivers/demo/demo.c @@ -69,18 +69,18 @@ demoInitialize(_EGLDriver *drv, EGLDisplay dpy, EGLint *major, EGLint *minor) for (i = 0; i < 4; i++) { _EGLConfig config; _eglInitConfig(&config, i + 1); - _eglSetConfigAtrib(&config, EGL_RED_SIZE, 8); - _eglSetConfigAtrib(&config, EGL_GREEN_SIZE, 8); - _eglSetConfigAtrib(&config, EGL_BLUE_SIZE, 8); - _eglSetConfigAtrib(&config, EGL_ALPHA_SIZE, 8); - _eglSetConfigAtrib(&config, EGL_BUFFER_SIZE, 32); + _eglSetConfigAttrib(&config, EGL_RED_SIZE, 8); + _eglSetConfigAttrib(&config, EGL_GREEN_SIZE, 8); + _eglSetConfigAttrib(&config, EGL_BLUE_SIZE, 8); + _eglSetConfigAttrib(&config, EGL_ALPHA_SIZE, 8); + _eglSetConfigAttrib(&config, EGL_BUFFER_SIZE, 32); if (i & 1) { - _eglSetConfigAtrib(&config, EGL_DEPTH_SIZE, 32); + _eglSetConfigAttrib(&config, EGL_DEPTH_SIZE, 32); } if (i & 2) { - _eglSetConfigAtrib(&config, EGL_STENCIL_SIZE, 8); + _eglSetConfigAttrib(&config, EGL_STENCIL_SIZE, 8); } - _eglSetConfigAtrib(&config, EGL_SURFACE_TYPE, + _eglSetConfigAttrib(&config, EGL_SURFACE_TYPE, (EGL_WINDOW_BIT | EGL_PIXMAP_BIT | EGL_PBUFFER_BIT)); _eglAddConfig(disp, &config); } @@ -334,20 +334,6 @@ demoMakeCurrent(_EGLDriver *drv, EGLDisplay dpy, EGLSurface draw, EGLSurface rea } -static const char * -demoQueryString(_EGLDriver *drv, EGLDisplay dpy, EGLint name) -{ - if (name == EGL_EXTENSIONS) { - return "EGL_MESA_screen_surface"; - } - else { - return _eglQueryString(drv, dpy, name); - } -} - - - - /* * Just to silence warning */ @@ -381,6 +367,10 @@ _eglMain(NativeDisplayType dpy) demo->Base.CreatePbufferSurface = demoCreatePbufferSurface; demo->Base.DestroySurface = demoDestroySurface; demo->Base.DestroyContext = demoDestroyContext; - demo->Base.QueryString = demoQueryString; + + /* enable supported extensions */ + demo->Base.MESA_screen_surface = EGL_TRUE; + demo->Base.MESA_copy_context = EGL_TRUE; + return &demo->Base; } -- cgit v1.2.3