diff options
author | Alex Deucher <[email protected]> | 2011-04-19 13:35:19 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-04-19 13:35:19 -0400 |
commit | 08d1c91e6c185a186e49189b7ed48629f35a4659 (patch) | |
tree | d1814dcefb79ca71d8736d466e6889ea1485fcff /src/gallium/drivers/r600/r600_buffer.c | |
parent | 843dfe3206c4f397c7911b748373dde5540392a4 (diff) |
r600g: add evergreen+ big endian support
Based on Cédric's r6xx/r7xx patch.
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_buffer.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_buffer.c b/src/gallium/drivers/r600/r600_buffer.c index c1f063fc21a..71b47e1b056 100644 --- a/src/gallium/drivers/r600/r600_buffer.c +++ b/src/gallium/drivers/r600/r600_buffer.c @@ -282,7 +282,7 @@ void r600_upload_const_buffer(struct r600_pipe_context *rctx, struct r600_resour for(i = 0; i < size / 4; i++) { tmpPtr[i] = bswap_32(*((uint32_t *)ptr + i)); } - + u_upload_data(rctx->vbuf_mgr->uploader, 0, size, tmpPtr, const_offset, (struct pipe_resource**)rbuffer, &flushed); |