r600g: remove some pointless and unused functions
authorMarek Olšák <maraeo@gmail.com>
Thu, 21 Apr 2011 15:24:50 +0000 (17:24 +0200)
committerMarek Olšák <maraeo@gmail.com>
Sun, 24 Apr 2011 23:20:40 +0000 (01:20 +0200)
src/gallium/winsys/r600/drm/r600_bo.c
src/gallium/winsys/r600/drm/r600_hw_context.c
src/gallium/winsys/r600/drm/r600_priv.h

index 122a688..e9c650d 100644 (file)
@@ -178,7 +178,7 @@ boolean r600_bo_get_winsys_handle(struct radeon *radeon, struct r600_bo *bo,
        whandle->stride = stride;
        switch(whandle->type) {
        case DRM_API_HANDLE_TYPE_KMS:
-               whandle->handle = r600_bo_get_handle(bo);
+               whandle->handle = bo->bo->handle;
                break;
        case DRM_API_HANDLE_TYPE_SHARED:
                if (radeon_bo_get_name(radeon, bo->bo, &whandle->handle))
index 662455b..e28ef1f 100644 (file)
@@ -798,7 +798,7 @@ void r600_context_bo_flush(struct r600_context *ctx, unsigned flush_flags,
                                unsigned flush_mask, struct r600_bo *rbo)
 {
        struct radeon_bo *bo;
-       bo = r600_bo_get_bo(rbo);
+       bo = rbo->bo;
        /* if bo has already been flushed */
        if (!(~bo->last_flush & flush_flags)) {
                bo->last_flush &= flush_mask;
@@ -818,7 +818,7 @@ void r600_context_bo_reloc(struct r600_context *ctx, u32 *pm4, struct r600_bo *r
 {
        struct radeon_bo *bo;
 
-       bo = r600_bo_get_bo(rbo);
+       bo = rbo->bo;
        assert(bo != NULL);
        if (bo->reloc) {
                *pm4 = bo->reloc_id;
index ed0f3e5..27bdf2b 100644 (file)
@@ -202,24 +202,6 @@ static inline void radeon_bo_unmap(struct radeon *radeon, struct radeon_bo *bo)
 }
 
 /*
- * r600_bo
- */
-static inline struct radeon_bo *r600_bo_get_bo(struct r600_bo *bo)
-{
-       return bo->bo;
-}
-
-static unsigned inline r600_bo_get_handle(struct r600_bo *bo)
-{
-       return bo->bo->handle;
-}
-
-static unsigned inline r600_bo_get_size(struct r600_bo *bo)
-{
-       return bo->size;
-}
-
-/*
  * fence
  */
 static inline bool fence_is_after(unsigned fence, unsigned ofence)