diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-15 20:51:28 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-10-15 20:51:28 +0000 |
commit | 16927d02bcf99e12942c735d13fad73eaa082e88 (patch) | |
tree | f8f83ffd1413e16bd5408315cf7b48430a71b81e | |
parent | 49aefce5e593c3e522f3a155824548c060167e54 (diff) |
initialize GetBufferSubData pointer
-rw-r--r-- | src/mesa/drivers/osmesa/osmesa.c | 1 | ||||
-rw-r--r-- | src/mesa/drivers/x11/xm_dd.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index 2b64010c80..368e35a989 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -688,6 +688,7 @@ hook_in_driver_functions( GLcontext *ctx ) ctx->Driver.BindBuffer = NULL; ctx->Driver.BufferData = _mesa_buffer_data; ctx->Driver.BufferSubData = _mesa_buffer_subdata; + ctx->Driver.GetBufferSubData = _mesa_buffer_get_subdata; ctx->Driver.MapBuffer = _mesa_buffer_map; ctx->Driver.UnmapBuffer = NULL; #endif diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index a99c0d4b5f..c5e59bc083 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -1021,6 +1021,7 @@ void xmesa_init_pointers( GLcontext *ctx ) ctx->Driver.BindBuffer = NULL; ctx->Driver.BufferData = _mesa_buffer_data; ctx->Driver.BufferSubData = _mesa_buffer_subdata; + ctx->Driver.GetBufferSubData = _mesa_buffer_get_subdata; ctx->Driver.MapBuffer = _mesa_buffer_map; ctx->Driver.UnmapBuffer = NULL; #endif |