summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/default/headless_display.hpp
blob: 08c423c5874bd9f608ca6a943beb0248a9b63e74 (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
#ifndef MBGL_COMMON_HEADLESS_DISPLAY
#define MBGL_COMMON_HEADLESS_DISPLAY

#include <mbgl/platform/default/headless_view.hpp>

namespace mbgl {

class HeadlessDisplay {
public:
    HeadlessDisplay();
    ~HeadlessDisplay();

#if MBGL_USE_CGL
    CGLPixelFormatObj pixelFormat;
#endif

#if MBGL_USE_GLX
    Display *x_display = nullptr;
    GLXFBConfig *fb_configs = nullptr;
#endif
};

}

#endif