s/Tungsten Graphics/VMware/
[mesa.git] / src / gallium / state_trackers / vega / api_misc.c
index 78ba0bc1103082d7f6db87f9a8a4e834cc490fd5..5263394de05d70662a34ffa2c34f67933a8a5758 100644 (file)
 #include "VG/openvg.h"
 
 #include "vg_context.h"
+#include "api.h"
 
 /* Hardware Queries */
-VGHardwareQueryResult vgHardwareQuery(VGHardwareQueryType key,
-                                      VGint setting)
+VGHardwareQueryResult vegaHardwareQuery(VGHardwareQueryType key,
+                                        VGint setting)
 {
    struct vg_context *ctx = vg_current_context();
 
@@ -58,12 +59,12 @@ VGHardwareQueryResult vgHardwareQuery(VGHardwareQueryType key,
 }
 
 /* Renderer and Extension Information */
-const VGubyte *vgGetString(VGStringID name)
+const VGubyte *vegaGetString(VGStringID name)
 {
    struct vg_context *ctx = vg_current_context();
-   static const VGubyte *vendor = (VGubyte *)"Tungsten Graphics, Inc";
-   static const VGubyte *renderer = (VGubyte *)"Vega OpenVG 1.0";
-   static const VGubyte *version = (VGubyte *)"1.0";
+   static const VGubyte *vendor = (VGubyte *)"VMware, Inc.";
+   static const VGubyte *renderer = (VGubyte *)"Vega OpenVG 1.1";
+   static const VGubyte *version = (VGubyte *)"1.1";
 
    if (!ctx)
       return NULL;