Rasterizer: Convert BLOCK_SIZE into a constant variable
This commit is contained in:
parent
2793785e0c
commit
a0924b5e1b
|
@ -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];
|
||||||
|
|
Loading…
Reference in New Issue