のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

skia debug

     59 #if !defined(SK_DEBUG) && !defined(SK_RELEASE)
     60     #ifdef NDEBUG
     61         #define SK_RELEASE
     62     #else
     63         #define SK_DEBUG
     64     #endif
     65 #endif
     17 #if defined(SK_DEBUG) && defined(SK_RELEASE)
     18     #error "cannot define both SK_DEBUG and SK_RELEASE"
     19 #elif !defined(SK_DEBUG) && !defined(SK_RELEASE)
     20     #error "must define either SK_DEBUG or SK_RELEASE"
     21 #endif
     17 #if 0
     18     #undef GR_RELEASE
     19     #undef GR_DEBUG
     20     #define GR_RELEASE  0
     21     #define GR_DEBUG    1
     22 #endif