summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-03-18 16:54:25 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-03-20 18:34:24 +0000
commit48f6e754898879898165dca013157dffe2babb12 (patch)
treead20a76585ceda204869351e3819445232c34c22 /src
parent210b468722ae4d4a97ccd788ad9de58858a0c7fa (diff)
gallium: Explain what happens if buffer_flush_mapped_range isn't called.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/include/pipe/p_screen.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h
index ed3a026023..ceac755e71 100644
--- a/src/gallium/include/pipe/p_screen.h
+++ b/src/gallium/include/pipe/p_screen.h
@@ -223,6 +223,13 @@ struct pipe_screen {
* specified to buffer_map_range. This is different from the
* ARB_map_buffer_range semantics because we don't forbid multiple mappings
* of the same buffer (yet).
+ *
+ * If the buffer was mapped for writing and no buffer_flush_mapped_range
+ * call was done until the buffer_unmap is called then the pipe driver will
+ * assumed that the whole buffer was written. This is for backward
+ * compatibility purposes and may affect performance -- the state tracker
+ * should always specify exactly what got written while the buffer was
+ * mapped.
*/
void (*buffer_flush_mapped_range)( struct pipe_screen *screen,
struct pipe_buffer *buf,