diff options
author | Thomas Hellstrom <[email protected]> | 2017-06-20 18:36:08 +0200 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2017-08-03 08:01:25 +0200 |
commit | 91c93dec980dbf7b253c124b85dc4e46d2a83587 (patch) | |
tree | 69acc37b574335e1fd9106a8fdcc038b03bfcb85 /src/mesa/state_tracker/st_manager.h | |
parent | ad5136ac826a9e34d1f789398016a018c42a27ca (diff) |
gallium/st: Add a method to flush outstanding swapbuffers
Add a state tracker interface method to flush outstanding swapbuffers, and
add a call to it from the mesa state tracker during glFinish().
This doesn't strictly mean the outstanding swapbuffers have actually finished
executing but is sufficient for glFinish()
to be able to be used as a replacement for glXWaitGL().
Signed-off-by: Thomas Hellstrom <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Sinclair Yeh <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_manager.h')
-rw-r--r-- | src/mesa/state_tracker/st_manager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_manager.h b/src/mesa/state_tracker/st_manager.h index c54f29e2941..1a1ea79af8e 100644 --- a/src/mesa/state_tracker/st_manager.h +++ b/src/mesa/state_tracker/st_manager.h @@ -53,4 +53,7 @@ st_framebuffer_reference(struct st_framebuffer **ptr, void st_framebuffer_interface_destroy(struct st_framebuffer_interface *stfbi); +void +st_manager_flush_swapbuffers(void); + #endif /* ST_MANAGER_H */ |