summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2011-03-01 13:35:39 -0800
committerIan Romanick <ian.d.romanick@intel.com>2011-03-01 13:35:39 -0800
commitb0a7492aebeb4517346f0da2362d6991a7385b59 (patch)
treed30b612acfac5c14285c88f9316e52fd1ca6997b
parent8aabb1bc9951e168719cc94dd80b2f55fb764512 (diff)
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.
-rw-r--r--src/mesa/drivers/dri/intel/intel_context.c6
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 d183d275e7..f6f0b03e53 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: