diff options
author | chai <chaifix@163.com> | 2021-10-31 19:37:06 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-31 19:37:06 +0800 |
commit | b972cec461f6c587edd8febbc6dad45bad65046d (patch) | |
tree | 006d5b6a05652c7c9670276c146fd27e98315311 /Runtime/Graphics/RenderCommands.h | |
parent | 98d05c5030ba1c35ddfe402790702b3f44c63134 (diff) |
*shader command parser
Diffstat (limited to 'Runtime/Graphics/RenderCommands.h')
-rw-r--r-- | Runtime/Graphics/RenderCommands.h | 2 |
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 |