summaryrefslogtreecommitdiff
path: root/include/mbgl/gl/implementation.hpp
blob: 4e3a3e51c71d92c28057c413fbb5bd4918893023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#if defined(__QT__)
    #define MBGL_USE_QT 1
#elif defined(__APPLE__)
    #include <TargetConditionals.h>
    #if TARGET_OS_IOS
        #define MBGL_USE_EAGL 1
    #else
        #define MBGL_USE_CGL 1
    #endif
#else
    #define MBGL_USE_GLX 1
#endif