summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2009-02-27 03:25:08 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2009-02-27 03:35:01 +0100
commit24a94d13c98f8b02a32213689acbd9665694318c (patch)
tree0391395167fb6c9891f36fb8f0acabec1d3e81c1
parent18e01393b83b2a1b78a0c0cee7fd3713cb3bc373 (diff)
st/drm: Seperate get handle for global buffer ids
-rw-r--r--src/gallium/include/state_tracker/drm_api.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/gallium/include/state_tracker/drm_api.h b/src/gallium/include/state_tracker/drm_api.h
index 588fa3a312c..cfed8d7b248 100644
--- a/src/gallium/include/state_tracker/drm_api.h
+++ b/src/gallium/include/state_tracker/drm_api.h
@@ -22,9 +22,18 @@ struct drm_api
* Special buffer functions
*/
/*@{*/
- boolean (*buffer_from_texture)(struct pipe_texture *texture, struct pipe_buffer **buffer, unsigned *stride);
- struct pipe_buffer* (*buffer_from_handle)(struct pipe_screen *screen, const char *name, unsigned handle);
- unsigned (*handle_from_buffer)(struct pipe_screen *screen, struct pipe_buffer *buffer);
+ boolean (*buffer_from_texture)(struct pipe_texture *texture,
+ struct pipe_buffer **buffer,
+ unsigned *stride);
+ struct pipe_buffer* (*buffer_from_handle)(struct pipe_screen *screen,
+ const char *name,
+ unsigned handle);
+ boolean (*handle_from_buffer)(struct pipe_screen *screen,
+ struct pipe_buffer *buffer,
+ unsigned *handle);
+ boolean (*global_handle_from_buffer)(struct pipe_screen *screen,
+ struct pipe_buffer *buffer,
+ unsigned *handle);
/*@}*/
};