diff options
author | Marek Olšák <[email protected]> | 2011-03-08 11:32:35 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-03-15 15:58:12 +0100 |
commit | aea4ed41ed9b4d0442d1090ac1f01231a9859796 (patch) | |
tree | 6a04f121be43947e8bd0ba73dd9fc879a48cdd8f /src/gallium/include | |
parent | 9a9c1e1ae1d54af6d73dbdb393d80bf5ad37f28d (diff) |
gallium: add texture barrier support to the interface and st/mesa (v2)
v2: change the gallium entry point to texture_barrier.
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 211f99f7cef..d8de3bac0ec 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -390,6 +390,11 @@ struct pipe_context { struct pipe_resource *, unsigned offset, unsigned size); + + /** + * Flush any pending framebuffer writes and invalidate texture caches. + */ + void (*texture_barrier)(struct pipe_context *); }; |