diff options
author | Marek Olšák <[email protected]> | 2011-07-23 04:29:59 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-08-02 18:52:17 +0200 |
commit | e69dde5233a2fc6ad4c5483d079e1ea3a2123a59 (patch) | |
tree | dba9917eff3d72fb565ed1f2c5dd883b3d582e38 /src/gallium/drivers/r600/r600.h | |
parent | f6df430a85141f6a384c18079fb5b2ad848dac0d (diff) |
r600g: remove dummy function r600_bo_offset
Always returned 0.
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index d2b03418ede..2e759c79409 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -105,11 +105,8 @@ struct r600_bo *r600_bo_handle(struct radeon *radeon, 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); boolean r600_bo_get_winsys_handle(struct radeon *radeon, struct r600_bo *pb_bo, - unsigned stride, struct winsys_handle *whandle); -static INLINE unsigned r600_bo_offset(struct r600_bo *bo) -{ - return 0; -} + unsigned stride, struct winsys_handle *whandle); + void r600_bo_destroy(struct radeon *radeon, struct r600_bo *bo); /* this relies on the pipe_reference being the first member of r600_bo */ |