i965: Remove use_early_z option.
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 27f6b9b69ba732c1d6c6ac57934ed35997b2f79f..f500c083f59868293705e9a60bd45b21871411bf 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 e2fdd255aeb145667add0b6ed86d7441e12efff3..5a4209fb3d2d1dfd46a46bd4c501c9680dc10dfb 100644 (file)
@@ -257,8 +257,6 @@ struct intel_context
     */
    bool is_front_buffer_reading;
 
-   bool use_early_z;
-
    int driFd;
 
    __DRIcontext *driContext;
index 8d9d267314687ca4f81ba5de0f1fb34a2abd3c0f..e207300dca38b9a9039cfd3c24e44048f06f91a4 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"