diff options
author | Nicolai Hähnle <[email protected]> | 2016-01-09 18:05:58 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-01-14 09:39:57 -0500 |
commit | 70e66c57bbff930f7caa8606e75cfc91417bbc67 (patch) | |
tree | 2b5a4aa8e7d5d6045507eabdfb85f55d1d4d7bed /src/mesa/state_tracker/st_context.c | |
parent | 9e2240e892cb893d60561bf7be157ad8939b3ea8 (diff) |
st/mesa: implement Driver.InvalidateBufferSubData
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 87193a9d478..4add50e3ed9 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -446,7 +446,7 @@ void st_init_driver_functions(struct pipe_screen *screen, _mesa_init_sampler_object_functions(functions); st_init_blit_functions(functions); - st_init_bufferobject_functions(functions); + st_init_bufferobject_functions(screen, functions); st_init_clear_functions(functions); st_init_bitmap_functions(functions); st_init_copy_image_functions(functions); |