// Copyright (c) 2012-2017 VideoStitch SAS // Copyright (c) 2018 stitchEm #pragma once #include "libvideostitch/status.hpp" #ifndef __APPLE__ #ifndef __ANDROID__ #define GLEW_STATIC #include #include #else #ifndef GLEWLIB_UNSUPPORTED #define GLEW_STATIC #include #else #include #endif #endif #else #include #include #endif namespace VideoStitch { namespace Core { PotentialValue createSourceSurfaceTexture(size_t width, size_t height); PotentialValue createPanoSurfacePB(size_t width, size_t height); } // namespace Core } // namespace VideoStitch