diff options
author | keithw <keithw@keithw-laptop.(none)> | 2007-11-19 20:05:38 +0000 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2007-12-09 14:03:33 +0000 |
commit | cd1eefee8404ae69ea5b604971b8be78abf588e6 (patch) | |
tree | 950682cc69a75c68b2a25ec432de1d2eb3787cc9 /src/mesa/pipe/p_defines.h | |
parent | f83d4e7bde28d6f73a0de96781da506ddb338714 (diff) |
add fence interfaces and buffer create flags to pipe_winsys
Diffstat (limited to 'src/mesa/pipe/p_defines.h')
-rw-r--r-- | src/mesa/pipe/p_defines.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/pipe/p_defines.h b/src/mesa/pipe/p_defines.h index a853605486..8dce3aba90 100644 --- a/src/mesa/pipe/p_defines.h +++ b/src/mesa/pipe/p_defines.h @@ -170,8 +170,12 @@ /** * Buffer access flags */ -#define PIPE_BUFFER_FLAG_READ 0x1 -#define PIPE_BUFFER_FLAG_WRITE 0x2 +#define PIPE_BUFFER_FLAG_READ 0x1 +#define PIPE_BUFFER_FLAG_WRITE 0x2 +#define PIPE_BUFFER_FLAG_MEM_LOCAL 0x4 +#define PIPE_BUFFER_FLAG_CACHED 0x8 +#define PIPE_BUFFER_FLAG_CUSTOM (1<<16) + /** |