summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/depth_mode.hpp
blob: 37617e3c3478d94f3aaf42174e07be650d09fa70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once

#include <mbgl/util/range.hpp>

namespace mbgl {
namespace gl {

class DepthMode {
public:
    enum Function {
        Never        = 0x0200,
        Less         = 0x0201,
        Equal        = 0x0202,
        LessEqual    = 0x0203,
        Greater      = 0x0204,
        NotEqual     = 0x0205,
        GreaterEqual = 0x0206,
        Always       = 0x0207
    };

    enum Mask : bool {
        ReadOnly = false,
        ReadWrite = true
    };

    Function func;
    Mask mask;
    Range<float> range;

    static DepthMode disabled() {
       return DepthMode { Always, ReadOnly, { 0.0, 1.0 } };
    }
};

} // namespace gl
} // namespace mbgl