diff options
author | Christoph Bumiller <[email protected]> | 2011-08-26 22:59:19 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-09-14 16:19:51 +0200 |
commit | 150bb0fb34b74055c7dd6d2925ce9c5a1d7decf5 (patch) | |
tree | 3c9032e6abcd37de542ded4da1be8ccc32029541 /src/gallium/drivers/nvc0/nvc0_context.h | |
parent | ec22b75be1c57f991f48bf6cc1d4b910911e8bf2 (diff) |
nouveau: make data argument of nouveau_context::push_data const
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_context.h')
-rw-r--r-- | src/gallium/drivers/nvc0/nvc0_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_context.h b/src/gallium/drivers/nvc0/nvc0_context.h index aa50df076b1..353a5418dd5 100644 --- a/src/gallium/drivers/nvc0/nvc0_context.h +++ b/src/gallium/drivers/nvc0/nvc0_context.h @@ -204,8 +204,8 @@ nvc0_m2mf_transfer_rect(struct pipe_screen *pscreen, uint32_t nblocksx, uint32_t nblocksy); void nvc0_m2mf_push_linear(struct nouveau_context *nv, - struct nouveau_bo *dst, unsigned offset, unsigned domain, - unsigned size, void *data); + struct nouveau_bo *dst, unsigned offset, unsigned domain, + unsigned size, const void *data); void nvc0_m2mf_copy_linear(struct nouveau_context *nv, struct nouveau_bo *dst, unsigned dstoff, unsigned dstdom, |