From dc587fa295a9edec10f8aaafd4fcb686312b4d75 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 23 May 2015 00:38:37 -0400 Subject: video_core/utils: Remove unused variables in GetMortonOffset --- src/video_core/utils.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/video_core/utils.h') diff --git a/src/video_core/utils.h b/src/video_core/utils.h index ffb3e73a..4fa60a10 100644 --- a/src/video_core/utils.h +++ b/src/video_core/utils.h @@ -72,11 +72,8 @@ static inline u32 GetMortonOffset(u32 x, u32 y, u32 bytes_per_pixel) { // // This pattern is what's called Z-order curve, or Morton order. - const unsigned int block_width = 8; const unsigned int block_height = 8; - const unsigned int coarse_x = x & ~7; - const unsigned int coarse_y = y & ~7; u32 i = VideoCore::MortonInterleave(x, y); -- cgit v1.2.3