Overte C++ Documentation
ColorChannel.h
1 //
2 // ColorChannel.h
3 // libraries/image/src/image
4 //
5 // Created by Sabrina Shanman on 2019/02/12.
6 // Copyright 2019 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_image_ColorChannel_h
13 #define hifi_image_ColorChannel_h
14 
15 namespace image {
16  enum class ColorChannel {
17  NONE,
18  RED,
19  GREEN,
20  BLUE,
21  ALPHA,
22  COUNT
23  };
24 };
25 
26 #endif // hifi_image_ColorChannel_h