summaryrefslogtreecommitdiffstats
path: root/thirdparty/msdfgen/core/EdgeColor.h
blob: 5d3730c9a65fe1485201d8bcf2643f9aed7aaa56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#pragma once

#include "base.h"

namespace msdfgen {

/// Edge color specifies which color channels an edge belongs to.
enum EdgeColor {
    BLACK = 0,
    RED = 1,
    GREEN = 2,
    YELLOW = 3,
    BLUE = 4,
    MAGENTA = 5,
    CYAN = 6,
    WHITE = 7
};

}