mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-28 23:38:49 +00:00
Rasterizer: Convert BLOCK_SIZE into a constant variable
This commit is contained in:
parent
2793785e0c
commit
a0924b5e1b
1 changed files with 2 additions and 2 deletions
|
@ -16,10 +16,10 @@
|
|||
#include "VideoBackends/Software/XFMemLoader.h"
|
||||
#include "VideoCommon/BoundingBox.h"
|
||||
|
||||
#define BLOCK_SIZE 2
|
||||
|
||||
namespace Rasterizer
|
||||
{
|
||||
static constexpr int BLOCK_SIZE = 2;
|
||||
|
||||
static Slope ZSlope;
|
||||
static Slope WSlope;
|
||||
static Slope ColorSlopes[2][4];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue