Browse Source

removed beta from version string

tags/mesa_3_3
Brian Paul 25 years ago
parent
commit
f7d503376f
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/mesa/main/get.c

+ 4
- 4
src/mesa/main/get.c View File

@@ -1,4 +1,4 @@
/* $Id: get.c,v 1.29 2000/05/23 20:10:49 brianp Exp $ */
/* $Id: get.c,v 1.30 2000/07/21 15:41:08 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -4671,9 +4671,9 @@ const GLubyte *
_mesa_GetString( GLenum name )
{
GET_CURRENT_CONTEXT(ctx);
static char *vendor = "Brian Paul";
static char *renderer = "Mesa";
static char *version = "1.2 Mesa 3.3 beta";
static const char *vendor = "Brian Paul";
static const char *renderer = "Mesa";
static const char *version = "1.2 Mesa 3.3";

ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH_WITH_RETVAL(ctx, "glGetString", 0);


Loading…
Cancel
Save