Ray Tracer Common Project
Image rendering program based on the ray tracing technique.
sdl.hpp
1 
15 #pragma once
16 
17 #if defined(__linux__)
18 #include <SDL/SDL.h>
19 #ifndef NO_SDL_IMAGE
20 #include <SDL/SDL_image.h>
21 #endif
22 #else
23 #include <SDL.h>
24 #ifndef NO_SDL_IMAGE
25 #include <SDL_image.h>
26 #endif
27 #endif