Split vid_voodoo.c into multiple source & header files.

This commit is contained in:
SarahW 2020-07-14 21:35:23 +01:00
commit 41238b3c85
22 changed files with 6938 additions and 6761 deletions

View file

@ -1,4 +1,4 @@
uint8_t dither_rb[256][4][4] =
static const uint8_t dither_rb[256][4][4] =
{
{
{0, 0, 0, 0},
@ -1538,7 +1538,7 @@ uint8_t dither_rb[256][4][4] =
},
};
uint8_t dither_g[256][4][4] =
static const uint8_t dither_g[256][4][4] =
{
{
{0, 0, 0, 0},
@ -3078,7 +3078,7 @@ uint8_t dither_g[256][4][4] =
},
};
uint8_t dither_rb2x2[256][2][2] =
static const uint8_t dither_rb2x2[256][2][2] =
{
{
{0, 0},
@ -4106,7 +4106,7 @@ uint8_t dither_rb2x2[256][2][2] =
},
};
uint8_t dither_g2x2[256][2][2] =
static const uint8_t dither_g2x2[256][2][2] =
{
{
{0, 0},