summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/RenderCommands.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-31 19:37:06 +0800
committerchai <chaifix@163.com>2021-10-31 19:37:06 +0800
commitb972cec461f6c587edd8febbc6dad45bad65046d (patch)
tree006d5b6a05652c7c9670276c146fd27e98315311 /Runtime/Graphics/RenderCommands.h
parent98d05c5030ba1c35ddfe402790702b3f44c63134 (diff)
*shader command parser
Diffstat (limited to 'Runtime/Graphics/RenderCommands.h')
-rw-r--r--Runtime/Graphics/RenderCommands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Runtime/Graphics/RenderCommands.h b/Runtime/Graphics/RenderCommands.h
index 3908e3a..cbffdd0 100644
--- a/Runtime/Graphics/RenderCommands.h
+++ b/Runtime/Graphics/RenderCommands.h
@@ -7,7 +7,7 @@ struct RenderCommand
virtual void Execute() = 0;
};
-typedef std::vector<RenderCommand> RenderCommandGroup;
+typedef std::vector<RenderCommand*> RenderCommandGroup;
// Cull Off|Front|Back|Both
struct Cmd_Cull : RenderCommand