From be3602da412ae56b5ee019fc47cc282eb3d66fad Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 28 Feb 2001 00:27:48 +0000 Subject: GLvisual inside GLframebuffer is no longer a pointer, copy the struct instead. Added context/drawbuffer visual config sanity checking in _mesa_make_current2(). Added some 'const' keywords. --- src/mesa/main/mtypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/mtypes.h') diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 93e76e5729..ca1a758502 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.21 2001/02/20 16:42:25 brianp Exp $ */ +/* $Id: mtypes.h,v 1.22 2001/02/28 00:27:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1118,7 +1118,7 @@ struct gl_shared_state { * will make derived classes. */ struct gl_frame_buffer { - GLvisual *Visual; /* The corresponding visual */ + GLvisual Visual; /* The corresponding visual */ GLint Width, Height; /* size of frame buffer in pixels */ -- cgit v1.2.3