diff options
author | Roland Scheidegger <[email protected]> | 2006-11-03 02:07:34 +0000 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2006-11-03 02:07:34 +0000 |
commit | e7b71f69190c9fec567163dd7f63df593e069678 (patch) | |
tree | c4a22bc72d6247ef8b0caaba65f4454f50f486c4 | |
parent | 4b43054c4bc3d145583d8d9fd3ed33dca0746f9d (diff) |
remove setting some driver funcs explicitly to NULL, as they are no longer set up later. Thix fixes a segfault in _mesa_Bitmap().
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_context.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c index 9cec50147df..06b2a152d9f 100644 --- a/src/mesa/drivers/dri/r200/r200_context.c +++ b/src/mesa/drivers/dri/r200/r200_context.c @@ -235,10 +235,6 @@ static void r200InitDriverFuncs( struct dd_function_table *functions ) { functions->GetBufferSize = r200GetBufferSize; functions->GetString = r200GetString; - - functions->Error = NULL; - functions->DrawPixels = NULL; - functions->Bitmap = NULL; } static const struct dri_debug_control debug_control[] = |