EdgeColor.h 262 B

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