mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 09:19:55 +00:00
22 lines
417 B
C++
22 lines
417 B
C++
#ifndef OPENMW_COMPONENTS_SDLUTIL_IMAGETOSURFACE_H
|
|
#define OPENMW_COMPONENTS_SDLUTIL_IMAGETOSURFACE_H
|
|
|
|
#include <memory>
|
|
|
|
struct SDL_Surface;
|
|
|
|
namespace osg
|
|
{
|
|
class Image;
|
|
}
|
|
|
|
namespace SDLUtil
|
|
{
|
|
typedef std::unique_ptr<SDL_Surface, void (*)(SDL_Surface *)> SurfaceUniquePtr;
|
|
|
|
/// Convert an osg::Image to an SDL_Surface.
|
|
SurfaceUniquePtr imageToSurface(osg::Image* image, bool flip=false);
|
|
|
|
}
|
|
|
|
#endif
|