Mesa (7.10): intel: Remove driver date and related bits from renderer string

Ian Romanick idr at kemper.freedesktop.org
Wed Mar 2 21:47:24 UTC 2011


Module: Mesa
Branch: 7.10
Commit: b0a7492aebeb4517346f0da2362d6991a7385b59
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b0a7492aebeb4517346f0da2362d6991a7385b59

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Tue Mar  1 13:35:39 2011 -0800

intel: Remove driver date and related bits from renderer string

Not only did this contain lies, it contained lies that wouldn't be
useful even if true.

---

 src/mesa/drivers/dri/intel/intel_context.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c
index d183d27..f6f0b03 100644
--- a/src/mesa/drivers/dri/intel/intel_context.c
+++ b/src/mesa/drivers/dri/intel/intel_context.c
@@ -62,10 +62,6 @@ int INTEL_DEBUG = (0);
 #endif
 
 
-#define DRIVER_DATE                     "20100330 DEVELOPMENT"
-#define DRIVER_DATE_GEM                 "GEM " DRIVER_DATE
-
-
 static const GLubyte *
 intelGetString(struct gl_context * ctx, GLenum name)
 {
@@ -182,7 +178,7 @@ intelGetString(struct gl_context * ctx, GLenum name)
          break;
       }
 
-      (void) driGetRendererString(buffer, chipset, DRIVER_DATE_GEM, 0);
+      (void) driGetRendererString(buffer, chipset, "", 0);
       return (GLubyte *) buffer;
 
    default:




More information about the mesa-commit mailing list