Ray Tracer Common Project
Image rendering program based on the ray tracing technique.
sources
core
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
Generated on Fri Jan 26 2018 17:51:57 for Ray Tracer Common Project by
1.8.15