1 | |
---|---|
2 | #pragma once |
3 | |
4 | namespace msdfgen { |
5 | |
6 | /// Edge color specifies which color channels an edge belongs to. |
7 | enum EdgeColor { |
8 | BLACK = 0, |
9 | RED = 1, |
10 | GREEN = 2, |
11 | YELLOW = 3, |
12 | BLUE = 4, |
13 | MAGENTA = 5, |
14 | CYAN = 6, |
15 | WHITE = 7 |
16 | }; |
17 | |
18 | } |
19 |