diff options
author | Brian Paul <[email protected]> | 2001-09-23 16:10:02 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-23 16:10:02 +0000 |
commit | a573803ed3fe9ef6489f45bd4c5455b77cb33a43 (patch) | |
tree | ec63d356c429ae960d32430a5acbc74b119f93fe /src/mesa/drivers/x11/fakeglx.c | |
parent | 78a03d3c455fec1ce5c26edec6016a6806d437b8 (diff) |
updates for Mesa 4.0
Diffstat (limited to 'src/mesa/drivers/x11/fakeglx.c')
-rw-r--r-- | src/mesa/drivers/x11/fakeglx.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 7309fb8ad83..80666aae4d5 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -1,10 +1,10 @@ -/* $Id: fakeglx.c,v 1.57 2001/09/14 02:43:04 brianp Exp $ */ +/* $Id: fakeglx.c,v 1.58 2001/09/23 16:11:27 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.0 * - * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -57,7 +57,7 @@ /* This indicates the client-side GLX API and GLX encoder version. */ #define CLIENT_MAJOR_VERSION 1 -#define CLIENT_MINOR_VERSION 2 /* don't have 1.3's pbuffers, etc yet */ +#define CLIENT_MINOR_VERSION 4 /* but don't have 1.3's pbuffers, etc yet */ /* This indicates the server-side GLX decoder version. * GLX 1.4 indicates OpenGL 1.3 support @@ -66,7 +66,7 @@ #define SERVER_MINOR_VERSION 4 /* This is appended onto the glXGetClient/ServerString version strings. */ -#define MESA_GLX_VERSION "Mesa 3.5.1" +#define MESA_GLX_VERSION "Mesa 4.0" /* Who implemented this GLX? */ #define VENDOR "Brian Paul" @@ -1698,7 +1698,7 @@ Fake_glXGetClientString( Display *dpy, int name ) /* XXX Move this when done. * Create an XMesaBuffer as a Pbuffer. - * New in Mesa 3.5.1 but untested. + * New in Mesa 4.0 but untested. */ extern XMesaBuffer XMesaCreatePBuffer( XMesaVisual v, XMesaColormap cmap, unsigned int width, unsigned int height ); |