diff options
author | Dave Airlie <airlied@linux.ie> | 2007-03-17 16:46:24 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-03-17 16:46:24 +1100 |
commit | 6a9b0cd0b43ba01b24871ec1fa155e192ddeaa56 (patch) | |
tree | 0ef16779d70e17591978305054c5017cdfa37ad1 /src | |
parent | e5070bc3ca75dee31034cc543f3d2ee04e5dc032 (diff) |
r300: change vendor string to DRI R300 Project
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/r300/radeon_context.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/radeon_context.c b/src/mesa/drivers/dri/r300/radeon_context.c index 66d1b153b3..22f943ebf3 100644 --- a/src/mesa/drivers/dri/r300/radeon_context.c +++ b/src/mesa/drivers/dri/r300/radeon_context.c @@ -70,7 +70,10 @@ static const GLubyte *radeonGetString(GLcontext * ctx, GLenum name) switch (name) { case GL_VENDOR: - return (GLubyte *) "Tungsten Graphics, Inc."; + if (IS_R300_CLASS(radeon->radeonScreen)) + return (GLubyte *) "DRI R300 Project"; + else + return (GLubyte *) "Tungsten Graphics, Inc."; case GL_RENDERER: { |