r600g: remove unused r600_bo::tiling_flags
authorMarek Olšák <maraeo@gmail.com>
Tue, 2 Aug 2011 21:03:11 +0000 (23:03 +0200)
committerMarek Olšák <maraeo@gmail.com>
Tue, 16 Aug 2011 07:15:10 +0000 (09:15 +0200)
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
src/gallium/winsys/r600/drm/r600_bo.c
src/gallium/winsys/r600/drm/r600_priv.h

index f74e0a498cdb417d5f96a8180afe16df82657939..9e6c7cc7639417aab9001de0f67491795fbe9b02 100644 (file)
@@ -91,6 +91,7 @@ struct r600_bo *r600_bo_handle(struct radeon *radeon, struct winsys_handle *whan
 {
        struct r600_bo *bo = calloc(1, sizeof(struct r600_bo));
        struct radeon_bo *rbo;
+       unsigned tiling_flags;
 
        rbo = bo->bo = radeon_bo(radeon, whandle->handle, 0, 0, 0);
        if (rbo == NULL) {
@@ -107,12 +108,12 @@ struct r600_bo *r600_bo_handle(struct radeon *radeon, struct winsys_handle *whan
        if (stride)
                *stride = whandle->stride;
 
-       radeon_bo_get_tiling_flags(radeon, rbo, &bo->tiling_flags);
+       radeon_bo_get_tiling_flags(radeon, rbo, &tiling_flags);
        if (array_mode) {
-               if (bo->tiling_flags) {
-                       if (bo->tiling_flags & RADEON_TILING_MACRO)
+               if (tiling_flags) {
+                       if (tiling_flags & RADEON_TILING_MACRO)
                                *array_mode = V_0280A0_ARRAY_2D_TILED_THIN1;
-                       else if (bo->tiling_flags & RADEON_TILING_MICRO)
+                       else if (tiling_flags & RADEON_TILING_MICRO)
                                *array_mode = V_0280A0_ARRAY_1D_TILED_THIN1;
                } else {
                        *array_mode = 0;
index 50783a610692e2385fca1076ae024d546bbf33b3..c310defe2b1e26db84409f74727855e8e07df167 100644 (file)
@@ -95,7 +95,6 @@ struct r600_bo {
        struct pipe_reference           reference; /* this must be the first member for the r600_bo_reference inline to work */
        /* DO NOT MOVE THIS ^ */
        unsigned                        size;
-       unsigned                        tiling_flags;
        unsigned                        domains;
        struct radeon_bo                *bo;
        unsigned                        fence;