#ifndef MBGL_COMMON_HEADLESS_VIEW #define MBGL_COMMON_HEADLESS_VIEW #ifdef __APPLE__ #define MBGL_USE_CGL 1 #else #define GL_GLEXT_PROTOTYPES #include #define MBGL_USE_GLX 1 #endif #include #include #include namespace mbgl { class HeadlessDisplay; class HeadlessView : public View { public: HeadlessView(); HeadlessView(std::shared_ptr display); ~HeadlessView(); void createContext(); void loadExtensions(); void resize(uint16_t width, uint16_t height, float pixelRatio); std::unique_ptr readPixels(); void notify(); void notify_map_change(MapChange change, timestamp delay = 0); void make_active(); void make_inactive(); void swap(); private: void clear_buffers(); private: std::shared_ptr display_; uint16_t width_; uint16_t height_; float pixelRatio_; #if MBGL_USE_CGL CGLContextObj glContext; #endif #if MBGL_USE_GLX Display *xDisplay = nullptr; GLXFBConfig *fbConfigs = nullptr; GLXContext glContext = 0; GLXPbuffer glxPbuffer = 0; #endif GLuint fbo = 0; GLuint fboDepthStencil = 0; GLuint fboColor = 0; }; } #endif