From: Younes Manton Date: Wed, 14 Jan 2009 05:21:24 +0000 (-0500) Subject: gallium: Add PIPE_BUFFER_USAGE_DISCARD. X-Git-Tag: mesa-7.8~4139^2~496^2~115^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0521c2682a3249562ff6a3d6ab6c90d1d63b82a3;p=platform%2Fupstream%2Fmesa.git gallium: Add PIPE_BUFFER_USAGE_DISCARD. When passed to map() signals that the buffer's previous contents are not required, allowing the driver to allocate a new buffer if the current buffer can not be mapped immediately. --- diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index 5c6a92b..4f0b301 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -204,6 +204,7 @@ enum pipe_texture_target { #define PIPE_BUFFER_USAGE_VERTEX (1 << 5) #define PIPE_BUFFER_USAGE_INDEX (1 << 6) #define PIPE_BUFFER_USAGE_CONSTANT (1 << 7) +#define PIPE_BUFFER_USAGE_DISCARD (1 << 8) /** Pipe driver custom usage flags should be greater or equal to this value */ #define PIPE_BUFFER_USAGE_CUSTOM (1 << 16)