diff options
author | José Fonseca <[email protected]> | 2007-11-05 18:04:35 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2007-11-06 14:49:38 +0000 |
commit | fa1a66d7fc4fd7854de7958a48e4992edd154489 (patch) | |
tree | ce48a896ebbef8b09ee363774cdfdf86dfb52da6 /src/mesa/state_tracker/st_atom_constbuf.c | |
parent | 4f79dbd5aa6b8a955ac9dcc43cf0852acd89a320 (diff) |
Supply buffer usage hints to winsys.
Winsys driver needs some hints in order to allocate the appropriate kind of
memory for the buffer.
Diffstat (limited to 'src/mesa/state_tracker/st_atom_constbuf.c')
-rw-r--r-- | src/mesa/state_tracker/st_atom_constbuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom_constbuf.c b/src/mesa/state_tracker/st_atom_constbuf.c index 7da71366761..446250c226c 100644 --- a/src/mesa/state_tracker/st_atom_constbuf.c +++ b/src/mesa/state_tracker/st_atom_constbuf.c @@ -80,7 +80,8 @@ void st_upload_constants( struct st_context *st, } /* load Mesa constants into the constant buffer */ - ws->buffer_data(ws, cbuf->buffer, paramBytes, params->ParameterValues); + ws->buffer_data(ws, cbuf->buffer, paramBytes, params->ParameterValues, + PIPE_BUFFER_USAGE_CONSTANT); cbuf->size = paramBytes; |