voodoo: Change 2x2 dither matrix values. Allows iteagle power-on video memory tests to pass. (nw)
This commit is contained in:
parent
a7a5d14693
commit
1656785386
@ -1019,16 +1019,23 @@ static const uint8_t dither_matrix_4x4[16] =
|
|||||||
15, 7, 13, 5
|
15, 7, 13, 5
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//static const uint8_t dither_matrix_2x2[16] =
|
||||||
|
//{
|
||||||
|
// 2, 10, 2, 10,
|
||||||
|
// 14, 6, 14, 6,
|
||||||
|
// 2, 10, 2, 10,
|
||||||
|
// 14, 6, 14, 6
|
||||||
|
//};
|
||||||
|
// Using this matrix allows iteagle video memory tests to pass
|
||||||
static const uint8_t dither_matrix_2x2[16] =
|
static const uint8_t dither_matrix_2x2[16] =
|
||||||
{
|
{
|
||||||
2, 10, 2, 10,
|
8, 10, 8, 10,
|
||||||
14, 6, 14, 6,
|
11, 9, 11, 9,
|
||||||
2, 10, 2, 10,
|
8, 10, 8, 10,
|
||||||
14, 6, 14, 6
|
11, 9, 11, 9
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*************************************
|
/*************************************
|
||||||
*
|
*
|
||||||
* Macros for extracting pixels
|
* Macros for extracting pixels
|
||||||
|
Loading…
Reference in New Issue
Block a user