MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
C_wrapper.h
Go to the documentation of this file.
1 #ifndef C_WRAPPER_HPP
2 #define C_WRAPPER_HPP
3 
4 #include "MobileRT/Config.hpp"
5 
6 #include <cstdint>
7 
8 #ifndef __cplusplus
9 #include <stdbool.h>
10 #endif
11 
12 #ifdef __cplusplus
13 extern "C"
14 #endif
15 void RayTrace(::MobileRT::Config &config, bool async);
16 
17 #ifdef __cplusplus
18 extern "C"
19 #endif
20 void stopRender();
21 
22 #endif // C_WRAPPER_HPP
Definition: Config.hpp:12
void stopRender()
Definition: C_wrapper.cpp:271
void RayTrace(::MobileRT::Config &config, bool async)
Definition: C_wrapper.cpp:283