summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-24 05:51:13 +0200
committerLioncash <mathew1800@gmail.com>2018-10-24 05:51:13 +0200
commit257b7bbfee47b0d2dab058593774d1caeb56f22b (patch)
tree15927c2f7ace72082c0cc4750e14bd2ff4e3cc2c /src/video_core/textures
parentmaxwell_3d: Remove unused variable within ProcessQueryGet() (diff)
downloadyuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar.gz
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar.bz2
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar.lz
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar.xz
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.tar.zst
yuzu-257b7bbfee47b0d2dab058593774d1caeb56f22b.zip
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/decoders.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp
index f1b40e7f5..da7989db9 100644
--- a/src/video_core/textures/decoders.cpp
+++ b/src/video_core/textures/decoders.cpp
@@ -142,7 +142,6 @@ void SwizzledData(u8* swizzled_data, u8* unswizzled_data, const bool unswizzle,
const u32 blocks_on_x = div_ceil(width, block_x_elements);
const u32 blocks_on_y = div_ceil(height, block_y_elements);
const u32 blocks_on_z = div_ceil(depth, block_z_elements);
- const u32 blocks = blocks_on_x * blocks_on_y * blocks_on_z;
const u32 gob_size = gob_x_bytes * gob_elements_y * gob_elements_z;
const u32 xy_block_size = gob_size * block_height;
const u32 block_size = xy_block_size * block_depth;