aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorChad Versace <[email protected]>2011-06-01 15:14:18 -0700
committerChad Versace <[email protected]>2011-06-08 10:06:40 -0700
commitbeb8b7da20c862549b96a500226caf3a610342d9 (patch)
treef70ebfb096a7fbd8790a7a80f90ad3f64df5a8d2 /src/mesa
parent6b2bf272ee173bd8ee6c731500861de21fa01b5f (diff)
intel/intel_context.c: Remove unused functions
Remove functions intel_override_hiz() and intel_override_separate_stencil(). They are now located in intel_screen.c. CC: Ian Romanick <[email protected]> CC: Kristian Høgsberg <[email protected]> Acked-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/intel/intel_context.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c
index 22704a30e1c..0259891be34 100644
--- a/src/mesa/drivers/dri/intel/intel_context.c
+++ b/src/mesa/drivers/dri/intel/intel_context.c
@@ -610,54 +610,6 @@ intelInitDriverFunctions(struct dd_function_table *functions)
intel_init_syncobj_functions(functions);
}
-/**
- * Override intel->has_hiz with environment variable INTEL_HIZ.
- *
- * Valid values for INTEL_HIZ are "0" and "1". If an invalid valid value is
- * encountered, a warning is emitted and INTEL_HIZ is ignored.
- */
-static void
-intel_override_hiz(struct intel_context *intel)
-{
- const char *s = getenv("INTEL_HIZ");
- if (!s) {
- return;
- } else if (!strncmp("0", s, 2)) {
- intel->has_hiz = false;
- } else if (!strncmp("1", s, 2)) {
- intel->has_hiz = true;
- } else {
- _mesa_warning(&intel->ctx,
- "env variable INTEL_HIZ=\"%s\" has invalid value and "
- "is ignored", s);
- }
-}
-
-/**
- * Override intel->has_separate_stencil with environment variable
- * INTEL_SEPARATE_STENCIL.
- *
- * Valid values for INTEL_SEPARATE_STENCIL are "0" and "1". If an invalid
- * value is encountered, a warning is emitted and INTEL_SEPARATE_STENCIL is
- * ignored.
- */
-static void
-intel_override_separate_stencil(struct intel_context *intel)
-{
- const char *s = getenv("INTEL_SEPARATE_STENCIL");
- if (!s) {
- return;
- } else if (!strncmp("0", s, 2)) {
- intel->has_separate_stencil = false;
- } else if (!strncmp("1", s, 2)) {
- intel->has_separate_stencil = true;
- } else {
- _mesa_warning(&intel->ctx,
- "env variable INTEL_SEPARATE_STENCIL=\"%s\" has invalid "
- "value and is ignored", s);
- }
-}
-
GLboolean
intelInitContext(struct intel_context *intel,
int api,