added gl_initialize_context_data(), gl_free_context_data(). code clean-up

This commit is contained in:
Brian Paul
2000-01-14 04:45:47 +00:00
parent 113edcc755
commit 4d053ddae8
2 changed files with 776 additions and 737 deletions
+766 -733
View File
File diff suppressed because it is too large Load Diff
+10 -4
View File
@@ -1,4 +1,4 @@
/* $Id: context.h,v 1.9 2000/01/05 04:36:17 brianp Exp $ */
/* $Id: context.h,v 1.10 2000/01/14 04:45:47 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -97,11 +97,17 @@ extern GLcontext *gl_create_context( GLvisual *visual,
void *driver_ctx,
GLboolean direct);
extern GLboolean gl_initialize_context_data( GLcontext *ctx,
GLvisual *visual,
GLcontext *share_list,
void *driver_ctx,
GLboolean direct );
extern void gl_free_context_data( GLcontext *ctx );
extern void gl_destroy_context( GLcontext *ctx );
/* Called by the driver after both the context and driver are fully
* initialized. Currently just reads the config file.
*/
extern void gl_context_initialize( GLcontext *ctx );