summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri
diff options
context:
space:
mode:
authorNian Wu <nian.wu@intel.com>2007-03-17 17:00:25 +0800
committerNian Wu <nian.wu@intel.com>2007-03-17 17:00:25 +0800
commit38889f5221821acf08365d3f332680707d4b9b5f (patch)
tree9afc0700b38efe8920b21cd22c4e5ba1cb21556d /src/mesa/drivers/dri
parenta02870f4f61a66560b3eb75f98a7fe57ebcb6ed6 (diff)
parent6a9b0cd0b43ba01b24871ec1fa155e192ddeaa56 (diff)
Merge git://proxy01.pd.intel.com:9419/git/mesa/mesa into crestline
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r--src/mesa/drivers/dri/r300/radeon_context.c5
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:
{