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/gallium/include/state_tracker | |
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/gallium/include/state_tracker')
-rw-r--r-- | src/gallium/include/state_tracker/st_api.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/include/state_tracker/st_api.h b/src/gallium/include/state_tracker/st_api.h index bc62a69da37..2eaf891ab7a 100644 --- a/src/gallium/include/state_tracker/st_api.h +++ b/src/gallium/include/state_tracker/st_api.h @@ -366,6 +366,8 @@ struct st_framebuffer_iface const enum st_attachment_type *statts, unsigned count, struct pipe_resource **out); + boolean (*flush_swapbuffers) (struct st_context_iface *stctx, + struct st_framebuffer_iface *stfbi); }; /** |