summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_screen.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-02-24 12:29:09 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-02-24 12:29:09 +0000
commit60e5fe65067da76dea816535bec1e9073adc0ba7 (patch)
tree5db1052818795cbe80a13751a1a1c2acd176e343 /src/gallium/include/pipe/p_screen.h
parent693fac8ae2e5812265222b1335695bd33b90bd8a (diff)
gallium: Allow to specify how much will be read / was written in buffer map/unmap.
This allows the pipe driver to do more efficient DMA upload/downloads, by avoiding to read/write unneeded/unmodified data.
Diffstat (limited to 'src/gallium/include/pipe/p_screen.h')
-rw-r--r--src/gallium/include/pipe/p_screen.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h
index 341d1caea0..69db80ee3f 100644
--- a/src/gallium/include/pipe/p_screen.h
+++ b/src/gallium/include/pipe/p_screen.h
@@ -56,6 +56,13 @@ struct pipe_buffer;
+struct pipe_buffer_range
+{
+ unsigned offset;
+ unsigned size;
+};
+
+
/**
* Gallium screen/adapter context. Basically everything
* hardware-specific that doesn't actually require a rendering
@@ -213,6 +220,27 @@ struct pipe_screen {
void (*buffer_unmap)( struct pipe_screen *screen,
struct pipe_buffer *buf );
+ /**
+ * Map a subrange of the buffer data store into the client's address space.
+ *
+ * Return pointer is always relative to offset 0, regardless of the
+ * read/write ranges.
+ */
+ void *(*buffer_map_range)( struct pipe_screen *screen,
+ struct pipe_buffer *buf,
+ struct pipe_buffer_range read,
+ struct pipe_buffer_range write,
+ unsigned usage /* XXX: deprecated? */);
+
+ /**
+ * Unmap a buffer.
+ *
+ * written is the range that the client actually wrote.
+ */
+ void (*buffer_unmap_range)( struct pipe_screen *screen,
+ struct pipe_buffer *buf,
+ struct pipe_buffer_range written);
+
void (*buffer_destroy)( struct pipe_screen *screen,
struct pipe_buffer *buf );