OSDN Git Service

st/egl: Remove native_config::slow_config.
authorChia-I Wu <olv@lunarg.com>
Wed, 22 Dec 2010 04:22:42 +0000 (12:22 +0800)
committerChia-I Wu <olv@lunarg.com>
Wed, 22 Dec 2010 05:22:36 +0000 (13:22 +0800)
In direct rendering scenario, it is not needed until an EGLDisplay can
support both HW and SW pipe screens.

src/gallium/state_trackers/egl/common/egl_g3d.c
src/gallium/state_trackers/egl/common/native.h
src/gallium/state_trackers/egl/gdi/native_gdi.c
src/gallium/state_trackers/egl/x11/native_dri2.c
src/gallium/state_trackers/egl/x11/native_ximage.c

index a3750ac..4641dd2 100644 (file)
@@ -229,9 +229,6 @@ init_config_attributes(_EGLConfig *conf, const struct native_config *nconf,
    conf->Samples = nconf->samples;
    conf->SampleBuffers = 0;
 
-   if (nconf->slow_config)
-      conf->ConfigCaveat = EGL_SLOW_CONFIG;
-
    if (nconf->transparent_rgb) {
       conf->TransparentType = EGL_TRANSPARENT_RGB;
       conf->TransparentRedValue = nconf->transparent_rgb_values[0];
index a66e81d..58d844e 100644 (file)
@@ -127,7 +127,6 @@ struct native_config {
    int native_visual_type;
    int level;
    int samples;
-   boolean slow_config;
    boolean transparent_rgb;
    int transparent_rgb_values[3];
 };
index d259e6e..2d04506 100644 (file)
@@ -319,7 +319,6 @@ gdi_display_get_configs(struct native_display *ndpy, int *num_configs)
          nconf->color_format = formats[i];
 
          nconf->window_bit = TRUE;
-         nconf->slow_config = TRUE;
       }
 
       gdpy->num_configs = count;
index 92203e1..83892e3 100644 (file)
@@ -590,8 +590,6 @@ dri2_display_convert_config(struct native_display *ndpy,
    nconf->level = mode->level;
    nconf->samples = mode->samples;
 
-   nconf->slow_config = (mode->visualRating == GLX_SLOW_CONFIG);
-
    if (mode->transparentPixel == GLX_TRANSPARENT_RGB) {
       nconf->transparent_rgb = TRUE;
       nconf->transparent_rgb_values[0] = mode->transparentRed;
index 3c32f37..d4f4dd0 100644 (file)
@@ -420,8 +420,6 @@ ximage_display_get_configs(struct native_display *ndpy, int *num_configs)
          xconf->base.native_visual_type = xconf->visual->class;
 #endif
 
-         xconf->base.slow_config = TRUE;
-
          count++;
       }