diff options
author | José Fonseca <[email protected]> | 2011-03-15 15:43:33 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-03-15 15:43:33 +0000 |
commit | 147ca90bd3fcac6dca28baf08ce7adb88821a414 (patch) | |
tree | dffb5f171e08812f294b8b6e060ceeed97e12fd8 /src/gallium/drivers/svga/svga_winsys.h | |
parent | ef33c82bfde788733aabc5dcc9647416c31ae254 (diff) |
svga: Update svga_winsys_screen::buffer_map comments.
Diffstat (limited to 'src/gallium/drivers/svga/svga_winsys.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_winsys.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_winsys.h b/src/gallium/drivers/svga/svga_winsys.h index 269659ed4c4..ae61cea083f 100644 --- a/src/gallium/drivers/svga/svga_winsys.h +++ b/src/gallium/drivers/svga/svga_winsys.h @@ -246,12 +246,12 @@ struct svga_winsys_screen /** * Map the entire data store of a buffer object into the client's address. - * flags is a bitmaks of PIPE_TRANSFER_* + * usage is a bitmask of PIPE_TRANSFER_* */ void * (*buffer_map)( struct svga_winsys_screen *sws, struct svga_winsys_buffer *buf, - unsigned flags ); + unsigned usage ); void (*buffer_unmap)( struct svga_winsys_screen *sws, |