OSDN Git Service

gallium: New PIPE_BUFFER_USAGE_DONTBLOCK flag.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 2 Mar 2009 17:18:21 +0000 (17:18 +0000)
committerJosé Fonseca <jfonseca@vmware.com>
Mon, 2 Mar 2009 17:33:25 +0000 (17:33 +0000)
To prevent blocking when mapping a buffer.

src/gallium/include/pipe/p_defines.h

index dc8a92d..284ebe0 100644 (file)
@@ -201,6 +201,8 @@ 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)
+#define PIPE_BUFFER_USAGE_DONTBLOCK (1 << 9)
 /** Pipe driver custom usage flags should be greater or equal to this value */
 #define PIPE_BUFFER_USAGE_CUSTOM    (1 << 16)