diff options
author | chai <chaifix@163.com> | 2021-10-31 19:47:57 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-31 19:47:57 +0800 |
commit | e5ffcfb43231c55c1cdd71566e622de7583160a9 (patch) | |
tree | c8cf84cf3eb6ca805054bd6f6466fd772eb44515 /Runtime/Graphics/RenderCommands.cpp | |
parent | b972cec461f6c587edd8febbc6dad45bad65046d (diff) |
* glsl compiler
Diffstat (limited to 'Runtime/Graphics/RenderCommands.cpp')
-rw-r--r-- | Runtime/Graphics/RenderCommands.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Runtime/Graphics/RenderCommands.cpp b/Runtime/Graphics/RenderCommands.cpp new file mode 100644 index 0000000..336bf20 --- /dev/null +++ b/Runtime/Graphics/RenderCommands.cpp @@ -0,0 +1,9 @@ +#include "RenderCommands.h" + +void ReleaseRenderCommandGroup(RenderCommandGroup& group) +{ + for (int i = 0; i < group.size(); ++i) + { + delete group[i]; + } +} |