summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-02 13:06:40 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-11-05 08:04:47 -0700
commit35924a34e5a405bc84459229abb477b2cb01409b (patch)
tree791f28d40a6323ddaaa576c4abb04b6506d9046d /src/mesa/drivers
parente8f1006081f9cf638d9f3869da24f6c96d227eba (diff)
remove old mesa context creation code
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/intel_winsys/intel_context.c37
1 files changed, 1 insertions, 36 deletions
diff --git a/src/mesa/drivers/dri/intel_winsys/intel_context.c b/src/mesa/drivers/dri/intel_winsys/intel_context.c
index 188e973de0..da79f18c0c 100644
--- a/src/mesa/drivers/dri/intel_winsys/intel_context.c
+++ b/src/mesa/drivers/dri/intel_winsys/intel_context.c
@@ -145,16 +145,6 @@ static const struct dri_debug_control debug_control[] = {
#endif
-static void
-intelInitDriverFunctions(struct dd_function_table *functions)
-{
- memset(functions, 0, sizeof(*functions));
- st_init_driver_functions(functions);
-}
-
-
-
-
GLboolean
intelCreateContext(const __GLcontextModes * mesaVis,
@@ -162,11 +152,6 @@ intelCreateContext(const __GLcontextModes * mesaVis,
void *sharedContextPrivate)
{
struct intel_context *intel = CALLOC_STRUCT(intel_context);
-#if 0
- struct dd_function_table functions;
- GLcontext *ctx = &intel->ctx;
- GLcontext *shareCtx = (GLcontext *) sharedContextPrivate;
-#endif
__DRIscreenPrivate *sPriv = driContextPriv->driScreenPriv;
intelScreenPrivate *intelScreen = (intelScreenPrivate *) sPriv->private;
@@ -175,15 +160,6 @@ intelCreateContext(const __GLcontextModes * mesaVis,
GLboolean havePools;
struct pipe_context *pipe;
-#if 0
- intelInitDriverFunctions(&functions);
-
- if (!_mesa_initialize_context(&intel->ctx,
- mesaVis, shareCtx,
- &functions, (void *) intel))
- return GL_FALSE;
-#endif
-
driContextPriv->driverPrivate = intel;
intel->intelScreen = intelScreen;
intel->driScreen = sPriv;
@@ -267,12 +243,8 @@ intelCreateContext(const __GLcontextModes * mesaVis,
}
}
-#if 0
- st_create_context( &intel->ctx, pipe );
-#else
intel->st = st_create_context2(pipe, mesaVis, NULL);
- intel->st->ctx->DriverCtx = intel;
-#endif
+ intel->st->ctx->DriverCtx = intel; /* hope to get rid of this... */
return GL_TRUE;
}
@@ -314,14 +286,7 @@ intelDestroyContext(__DRIcontextPrivate * driContextPriv)
*/
}
-#if 0
- /* free the Mesa context data */
- _mesa_free_context_data(ctx);
-
- st_destroy_context(intel->ctx.st);
-#else
st_destroy_context2(intel->st);
-#endif
}
}