summaryrefslogtreecommitdiff
path: root/include/mbgl/platform/default/headless_display.hpp
blob: 079947e77a1007bc28e5f8ced1f086e685b05a41 (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/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