forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathordered_dither_tests.cpp
More file actions
64 lines (55 loc) · 1.27 KB
/
ordered_dither_tests.cpp
File metadata and controls
64 lines (55 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Aseprite Render Library
// Copyright (c) 2001-2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gtest/gtest.h>
#include "render/ordered_dither.h"
using namespace doc;
using namespace render;
TEST(BayerMatrix, CheckD2)
{
BayerMatrix<2> matrix;
int expected[2*2] = {
0, 2,
3, 1
};
for (int i=0; i<2*2; ++i)
EXPECT_EQ(expected[i], matrix[i]);
}
TEST(BayerMatrix, CheckD4)
{
BayerMatrix<4> matrix;
int expected[4*4] = {
0, 8, 2, 10,
12, 4, 14, 6,
3, 11, 1, 9,
15, 7, 13, 5
};
for (int i=0; i<2*2; ++i)
EXPECT_EQ(expected[i], matrix[i]);
}
TEST(BayerMatrix, CheckD8)
{
BayerMatrix<8> matrix;
int expected[8*8] = {
0, 32, 8, 40, 2, 34, 10, 42,
48, 16, 56, 24, 50, 18, 58, 26,
12, 44, 4, 36, 14, 46, 6, 38,
60, 28, 52, 20, 62, 30, 54, 22,
3, 35, 11, 43, 1, 33, 9, 41,
51, 19, 59, 27, 49, 17, 57, 25,
15, 47, 7, 39, 13, 45, 5, 37,
63, 31, 55, 23, 61, 29, 53, 21
};
for (int i=0; i<2*2; ++i)
EXPECT_EQ(expected[i], matrix[i]);
}
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}