Просмотр исходного кода

video_core/utils: Remove unused variables in GetMortonOffset

Lioncash 11 лет назад
Родитель
Сommit
dc587fa295
1 измененных файлов с 0 добавлено и 3 удалено
  1. 0 3
      src/video_core/utils.h

+ 0 - 3
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);