i965: Remove use_early_z option. 87/7287/1
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 21 Jun 2013 22:22:27 +0000 (15:22 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 28 Jun 2013 20:35:26 +0000 (13:35 -0700)
This was only used by i965+.

v2: Also remove the option from the driconf list. (change by anholt)

Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/intel_context.c
src/mesa/drivers/dri/i965/intel_context.h
src/mesa/drivers/dri/i965/intel_screen.c

index 27f6b9b..f500c08 100644 (file)
@@ -635,8 +635,6 @@ intelInitContext(struct intel_context *intel,
 
    intel_fbo_init(intel);
 
-   intel->use_early_z = driQueryOptionb(&intel->optionCache, "early_z");
-
    if (!driQueryOptionb(&intel->optionCache, "hiz")) {
        intel->has_hiz = false;
        /* On gen6, you can only do separate stencil with HIZ. */
index e2fdd25..5a4209f 100644 (file)
@@ -257,8 +257,6 @@ struct intel_context
     */
    bool is_front_buffer_reading;
 
-   bool use_early_z;
-
    int driFd;
 
    __DRIcontext *driContext;
index 8d9d267..e207300 100644 (file)
@@ -58,10 +58,6 @@ PUBLIC const char __driConfigOptions[] =
         DRI_CONF_DESC(en, "Enable Hierarchical Z on gen6+")
       DRI_CONF_OPT_END
 
-      DRI_CONF_OPT_BEGIN_B(early_z, "false")
-        DRI_CONF_DESC(en, "Enable early Z in classic mode (unstable, 945-only).")
-      DRI_CONF_OPT_END
-
    DRI_CONF_SECTION_END
    DRI_CONF_SECTION_QUALITY
       DRI_CONF_FORCE_S3TC_ENABLE("false")
@@ -82,7 +78,7 @@ PUBLIC const char __driConfigOptions[] =
    DRI_CONF_SECTION_END
 DRI_CONF_END;
 
-const GLuint __driNConfigOptions = 14;
+const GLuint __driNConfigOptions = 13;
 
 #include "intel_batchbuffer.h"
 #include "intel_buffers.h"