summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-05 16:15:43 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-05 16:15:43 -0700
commit91564eedcc5e98e28d749267ac81ffd4082b4147 (patch)
treef6627d3d2bac227ffafcd543d6f79ccf08264148 /src/mesa/state_tracker
parente39f1b4cbea6d41dc09430bd3d811cb7bbdea5f8 (diff)
Remove some temporary state tracker context/framebuffer_create functions.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r--src/mesa/state_tracker/st_context.c56
-rw-r--r--src/mesa/state_tracker/st_public.h12
2 files changed, 29 insertions, 39 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index 138f18aa99..88fbaeeb7a 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -68,28 +68,8 @@ void st_invalidate_state(GLcontext * ctx, GLuint new_state)
}
-/*
- * XXX rename after above func is removed.
- */
-struct st_context *st_create_context2(struct pipe_context *pipe,
- const __GLcontextModes *visual,
- struct st_context *share)
-{
- GLcontext *ctx;
- GLcontext *shareCtx = share ? share->ctx : NULL;
- struct dd_function_table funcs;
-
- memset(&funcs, 0, sizeof(funcs));
- st_init_driver_functions(&funcs);
-
- ctx = _mesa_create_context(visual, shareCtx, &funcs, NULL);
-
- return st_create_context(ctx, pipe);
-}
-
-
-struct st_context *st_create_context( GLcontext *ctx,
- struct pipe_context *pipe )
+static struct st_context *
+st_create_context_priv( GLcontext *ctx, struct pipe_context *pipe )
{
struct st_context *st = CALLOC_STRUCT( st_context );
@@ -132,19 +112,24 @@ struct st_context *st_create_context( GLcontext *ctx,
}
-/*
- * XXX rename after below func is removed.
- */
-void st_destroy_context2( struct st_context *st )
+struct st_context *st_create_context(struct pipe_context *pipe,
+ const __GLcontextModes *visual,
+ struct st_context *share)
{
- GLcontext *ctx = st->ctx;
- _mesa_free_context_data(ctx);
- st_destroy_context(st);
- free(ctx);
+ GLcontext *ctx;
+ GLcontext *shareCtx = share ? share->ctx : NULL;
+ struct dd_function_table funcs;
+
+ memset(&funcs, 0, sizeof(funcs));
+ st_init_driver_functions(&funcs);
+
+ ctx = _mesa_create_context(visual, shareCtx, &funcs, NULL);
+
+ return st_create_context_priv(ctx, pipe);
}
-void st_destroy_context( struct st_context *st )
+static void st_destroy_context_priv( struct st_context *st )
{
draw_destroy(st->draw);
st_destroy_atoms( st );
@@ -161,6 +146,15 @@ void st_destroy_context( struct st_context *st )
}
+void st_destroy_context( struct st_context *st )
+{
+ GLcontext *ctx = st->ctx;
+ _mesa_free_context_data(ctx);
+ st_destroy_context_priv(st);
+ free(ctx);
+}
+
+
void st_make_current(struct st_context *st,
struct st_framebuffer *draw,
struct st_framebuffer *read)
diff --git a/src/mesa/state_tracker/st_public.h b/src/mesa/state_tracker/st_public.h
index c94e8d32c8..b21a8d3886 100644
--- a/src/mesa/state_tracker/st_public.h
+++ b/src/mesa/state_tracker/st_public.h
@@ -39,20 +39,16 @@
struct st_context;
struct st_framebuffer;
-
struct pipe_context;
+struct pipe_surface;
-struct st_context *st_create_context( GLcontext *ctx,
- struct pipe_context *pipe);
-struct st_context *st_create_context2(struct pipe_context *pipe,
- const __GLcontextModes *visual,
- struct st_context *share);
+struct st_context *st_create_context(struct pipe_context *pipe,
+ const __GLcontextModes *visual,
+ struct st_context *share);
void st_destroy_context( struct st_context *st );
-void st_destroy_context2( struct st_context *st );
-
void st_copy_context_state(struct st_context *dst, struct st_context *src,
uint mask);