00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "main/glheader.h"
00035 #include "main/macros.h"
00036 #include "main/version.h"
00037 #include "pipe/p_context.h"
00038 #include "pipe/p_screen.h"
00039 #include "pipe/p_winsys.h"
00040 #include "st_context.h"
00041 #include "st_cb_strings.h"
00042
00043 #define ST_VERSION_STRING "0.1"
00044
00045 static const GLubyte *
00046 st_get_string(GLcontext * ctx, GLenum name)
00047 {
00048 struct st_context *st = st_context(ctx);
00049 struct pipe_screen *screen = st->pipe->screen;
00050
00051 switch (name) {
00052 case GL_VENDOR: {
00053 const char *vendor = screen->get_vendor( screen );
00054 const char *tungsten = "Tungsten Graphics, Inc.";
00055
00056
00057
00058
00059
00060 if (vendor && strcmp(vendor, tungsten) != 0)
00061 util_snprintf(st->vendor, sizeof(st->vendor),
00062 "%s and %s", tungsten, vendor);
00063 else
00064 util_snprintf(st->vendor, sizeof(st->vendor), "%s", tungsten);
00065
00066 return (GLubyte *) st->vendor;
00067 }
00068
00069 case GL_RENDERER:
00070 util_snprintf(st->renderer, sizeof(st->renderer), "Gallium %s, %s on %s",
00071 ST_VERSION_STRING,
00072 screen->get_name( screen ),
00073 screen->winsys->get_name( screen->winsys ));
00074
00075 return (GLubyte *) st->renderer;
00076
00077 default:
00078 return NULL;
00079 }
00080 }
00081
00082
00083 void st_init_string_functions(struct dd_function_table *functions)
00084 {
00085 functions->GetString = st_get_string;
00086 }