00001 /* 00002 * SoftPixelDevice OS header 00003 * 00004 * This file is part of the "SoftPixel Engine" (Copyright (c) 2008 by Lukas Hermanns) 00005 * See "SoftPixelEngine.hpp" for license information. 00006 */ 00007 00008 #ifndef __SP_SOFTPIXELDEVICE_OS_H__ 00009 #define __SP_SOFTPIXELDEVICE_OS_H__ 00010 00011 00012 #include "Base/spStandard.hpp" 00013 00014 #if defined(SP_PLATFORM_WINDOWS) 00015 # include "Platform/spSoftPixelDeviceWindows.hpp" 00016 #elif defined(SP_PLATFORM_MACOSX) 00017 # include "Platform/spSoftPixelDeviceMacOSX.hpp" 00018 #elif defined(SP_PLATFORM_LINUX) 00019 # include "Platform/spSoftPixelDeviceLinux.hpp" 00020 #elif defined(SP_PLATFORM_ANDROID) 00021 # include "Platform/spSoftPixelDeviceAndroid.hpp" 00022 #elif defined(SP_PLATFORM_IOS) 00023 # include "Platform/spSoftPixelDeviceIOS.hpp" 00024 #endif 00025 00026 00027 #endif 00028 00029 00030 00031 // ================================================================================