Overte C++ Documentation
StencilMaskMode.h
1 //
2 // Created by Sam Gondelman on 3/26/19.
3 // Copyright 2019 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 
9 #ifndef hifi_StencilMaskMode_h
10 #define hifi_StencilMaskMode_h
11 
12 enum class StencilMaskMode {
13  NONE = -1, // for legacy reasons, this is -1
14  PAINT = 0,
15  MESH = 1
16 };
17 
18 #endif // hifi_StencilMaskMode_h