use _mesa_unmap_buffer by default

This commit is contained in:
Brian Paul
2004-10-31 15:23:42 +00:00
parent 2daa4137b6
commit 7eab337d9c

View File

@@ -1,6 +1,6 @@
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 6.1 * Version: 6.3
* *
* Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
* *
@@ -187,7 +187,7 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
driver->BufferSubData = _mesa_buffer_subdata; driver->BufferSubData = _mesa_buffer_subdata;
driver->GetBufferSubData = _mesa_buffer_get_subdata; driver->GetBufferSubData = _mesa_buffer_get_subdata;
driver->MapBuffer = _mesa_buffer_map; driver->MapBuffer = _mesa_buffer_map;
driver->UnmapBuffer = NULL; driver->UnmapBuffer = _mesa_buffer_unmap;
#endif #endif
/* T&L stuff */ /* T&L stuff */