diff options
author | Dave Airlie <[email protected]> | 2010-10-18 09:45:58 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-10-18 13:46:42 +1000 |
commit | 8a74f7422bedb419f3527bb1ccd60e1e9220502c (patch) | |
tree | 47d850865e467744e57cc10d70c2961f57770356 /src/gallium/drivers/r600/r600.h | |
parent | 375613afe38e0704b4ce38e64765b12d9660a846 (diff) |
r600g: retrieve tiling info from kernel for shared buffers.
we need to know if the back is tiled so we can blit from it properly.
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index 15ee0011061..62d983269f5 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -114,7 +114,7 @@ struct r600_bo; struct r600_bo *r600_bo(struct radeon *radeon, unsigned size, unsigned alignment, unsigned usage); struct r600_bo *r600_bo_handle(struct radeon *radeon, - unsigned handle); + unsigned handle, unsigned *array_mode); void *r600_bo_map(struct radeon *radeon, struct r600_bo *bo, unsigned usage, void *ctx); void r600_bo_unmap(struct radeon *radeon, struct r600_bo *bo); void r600_bo_reference(struct radeon *radeon, struct r600_bo **dst, |