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 /Projects/VisualStudio/Editor | |
parent | b972cec461f6c587edd8febbc6dad45bad65046d (diff) |
* glsl compiler
Diffstat (limited to 'Projects/VisualStudio/Editor')
-rw-r--r-- | Projects/VisualStudio/Editor/Editor.vcxproj | 1 | ||||
-rw-r--r-- | Projects/VisualStudio/Editor/Editor.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Projects/VisualStudio/Editor/Editor.vcxproj b/Projects/VisualStudio/Editor/Editor.vcxproj index e6c8aee..3dda150 100644 --- a/Projects/VisualStudio/Editor/Editor.vcxproj +++ b/Projects/VisualStudio/Editor/Editor.vcxproj @@ -191,6 +191,7 @@ <ClCompile Include="..\..\..\Runtime\Graphics\OpenGL.cpp" />
<ClCompile Include="..\..\..\Runtime\Graphics\Point.cpp" />
<ClCompile Include="..\..\..\Runtime\Graphics\PolyLine.cpp" />
+ <ClCompile Include="..\..\..\Runtime\Graphics\RenderCommands.cpp" />
<ClCompile Include="..\..\..\Runtime\Graphics\RenderTexture.cpp" />
<ClCompile Include="..\..\..\Runtime\Graphics\Shader.cpp" />
<ClCompile Include="..\..\..\Runtime\Graphics\ShaderCompiler.cpp" />
diff --git a/Projects/VisualStudio/Editor/Editor.vcxproj.filters b/Projects/VisualStudio/Editor/Editor.vcxproj.filters index 78f759a..32f64ac 100644 --- a/Projects/VisualStudio/Editor/Editor.vcxproj.filters +++ b/Projects/VisualStudio/Editor/Editor.vcxproj.filters @@ -390,6 +390,9 @@ <ClCompile Include="..\..\..\Runtime\Rendering\UIQuad.cpp">
<Filter>Runtime\Rendering</Filter>
</ClCompile>
+ <ClCompile Include="..\..\..\Runtime\Graphics\RenderCommands.cpp">
+ <Filter>Runtime\Graphics</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\..\Editor\GUI\Dock.h">
|