Rasterizer: Convert BLOCK_SIZE into a constant variable

This commit is contained in:
Lioncash 2015-10-10 16:35:46 -04:00
parent 2793785e0c
commit a0924b5e1b
1 changed files with 2 additions and 2 deletions

View File

@ -16,10 +16,10 @@
#include "VideoBackends/Software/XFMemLoader.h" #include "VideoBackends/Software/XFMemLoader.h"
#include "VideoCommon/BoundingBox.h" #include "VideoCommon/BoundingBox.h"
#define BLOCK_SIZE 2
namespace Rasterizer namespace Rasterizer
{ {
static constexpr int BLOCK_SIZE = 2;
static Slope ZSlope; static Slope ZSlope;
static Slope WSlope; static Slope WSlope;
static Slope ColorSlopes[2][4]; static Slope ColorSlopes[2][4];