diff options
author | Ian Romanick <[email protected]> | 2011-03-01 14:10:49 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-04-05 11:21:01 -0700 |
commit | 0fe34b7bbc9a8e089bbb4d0fe401b09095a571eb (patch) | |
tree | 3a65c8b316a9c3c3ff76d90447d9e658f5837459 /src/mesa/drivers/dri/r128/r128_dd.c | |
parent | 9996a86085edb2bdbcb165d985203ee8ce6a9b22 (diff) |
dri: Remove driver date from renderer string
Reviewed-by: Corbin Simpson <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Tested-by: Sedat Dilek <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/r128/r128_dd.c')
-rw-r--r-- | src/mesa/drivers/dri/r128/r128_dd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/r128/r128_dd.c b/src/mesa/drivers/dri/r128/r128_dd.c index 0b7005eba69..cfe2387948d 100644 --- a/src/mesa/drivers/dri/r128/r128_dd.c +++ b/src/mesa/drivers/dri/r128/r128_dd.c @@ -40,9 +40,6 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #include "utils.h" -#define DRIVER_DATE "20051027" - - /* Return the width and height of the current color buffer. */ static void r128GetBufferSize( struct gl_framebuffer *buffer, @@ -82,8 +79,7 @@ static const GLubyte *r128GetString( struct gl_context *ctx, GLenum name ) card_name = "Rage 128 Mobility"; } - offset = driGetRendererString( buffer, card_name, DRIVER_DATE, - agp_mode ); + offset = driGetRendererString( buffer, card_name, agp_mode ); return (GLubyte *)buffer; |