Files
oak-editor/app/render/rendermodes.h
T
itsmattkc 61c60e00d6 various small code cleanups and improvements
Largely refactoring work to make the code somewhat nicer to work with.
2019-12-26 19:00:08 +11:00

25 lines
578 B
C++

#ifndef RENDERMODE_H
#define RENDERMODE_H
class RenderMode {
public:
/**
* @brief The primary different "modes" the renderer can function in
*/
enum Mode {
/**
* This render is for realtime preview ONLY and does not need to be "perfect". Nodes can use lower-accuracy functions
* to save performance when possible.
*/
kOffline,
/**
* This render is some sort of export or master copy and Nodes should take time/bandwidth/system resources to produce
* a higher accuracy version.
*/
kOnline
};
};
#endif // RENDERMODE_H