change: change code style to Linux style except indent.

This commit is contained in:
Mike Solar
2025-08-03 03:09:40 +08:00
parent 65ab76edc8
commit 74f73ab3be
789 changed files with 77113 additions and 68888 deletions
+9 -8
View File
@@ -23,26 +23,27 @@
#include "common/define.h"
namespace olive {
namespace olive
{
class RenderMode {
public:
/**
/**
* @brief The primary different "modes" the renderer can function in
*/
enum Mode {
/**
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,
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
};
kOnline
};
};
}