diff options
author | Andres Rodriguez <[email protected]> | 2017-10-16 20:09:46 -0400 |
---|---|---|
committer | Andres Rodriguez <[email protected]> | 2018-01-30 15:13:49 -0500 |
commit | 382067f065fb758faeca27fb433c76cbb727ec53 (patch) | |
tree | 6448f610f6f0ca797b0de535d9912ff91e78c3c5 /src/mesa/state_tracker/st_context.c | |
parent | 67d5d08682c4975a025182a7bf58a4768753e677 (diff) |
mesa/st: add support for semaphore object create/import/delete v3
Add basic semaphore object operations.
v2: s/semaphore/fence for pipe objects
v3: added missing license headers
Signed-off-by: Andres Rodriguez <[email protected]>
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, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 3b0dda68c35..8274b9e0a8b 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -60,6 +60,7 @@ #include "st_cb_program.h" #include "st_cb_queryobj.h" #include "st_cb_readpixels.h" +#include "st_cb_semaphoreobjects.h" #include "st_cb_texture.h" #include "st_cb_xformfb.h" #include "st_cb_flush.h" @@ -734,6 +735,7 @@ st_init_driver_functions(struct pipe_screen *screen, st_init_query_functions(functions); st_init_cond_render_functions(functions); st_init_readpixels_functions(functions); + st_init_semaphoreobject_functions(functions); st_init_texture_functions(functions); st_init_texture_barrier_functions(functions); st_init_flush_functions(screen, functions); |