mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 02:30:18 +01:00
r300: change vendor string to DRI R300 Project
This commit is contained in:
parent
e5070bc3ca
commit
6a9b0cd0b4
1 changed files with 4 additions and 1 deletions
|
|
@ -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:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue