summaryrefslogtreecommitdiff
path: root/common/headless_view.hpp
blob: 0b255b4a38b475385b4a60a1ddbbee8d0a082d46 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef MBGL_COMMON_HEADLESS_CGL
#define MBGL_COMMON_HEADLESS_CGL

#ifdef __APPLE__
#define MBGL_USE_CGL 1
#else
#include <GL/glx.h>
#define MBGL_USE_GLX 1
#endif

#include <mbgl/map/view.hpp>
#include <mbgl/platform/gl.hpp>
#include <mbgl/util/time.hpp>

namespace mbgl {

class HeadlessView : public View {
public:
    HeadlessView();
    ~HeadlessView();

    void resize(int width, int height);

    void notify_map_change(MapChange change, timestamp delay = 0);
    void make_active();
    void swap();
    unsigned int root_fbo();

private:
    void clear_buffers();


private:
#if MBGL_USE_CGL
    CGLContextObj gl_context;
    GLuint fbo = 0;
    GLuint fbo_depth_stencil = 0;
    GLuint fbo_color = 0;
#endif

#if MBGL_USE_GLX
    GLXContext gl_context = nullptr;
    XVisualInfo *x_info = nullptr;
    Display *x_display = nullptr;
    Pixmap x_pixmap = 0;
    GLXPixmap glx_pixmap = 0;
#endif
};

}

#endif