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.
(cherry picked from commit b0a7492aeb)
This commit is contained in:
Ian Romanick 2011-03-01 13:35:39 -08:00
parent 2b41289691
commit dfae3ffa0f

View file

@ -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(GLcontext * ctx, GLenum name)
{
@ -182,7 +178,7 @@ intelGetString(GLcontext * ctx, GLenum name)
break;
}
(void) driGetRendererString(buffer, chipset, DRIVER_DATE_GEM, 0);
(void) driGetRendererString(buffer, chipset, "", 0);
return (GLubyte *) buffer;
default: