Updated plan + config.
This commit is contained in:
parent
00d5e1476c
commit
afec17cb0f
|
|
@ -121,6 +121,15 @@
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||||
</Link>
|
</Link>
|
||||||
|
<CustomBuild>
|
||||||
|
<Command>slangc %(FullPath) -profile sm_6_6 -target spirv -o %(Filename).spv</Command>
|
||||||
|
</CustomBuild>
|
||||||
|
<CustomBuild>
|
||||||
|
<Message>Compiling %(Filename).slang</Message>
|
||||||
|
</CustomBuild>
|
||||||
|
<CustomBuild>
|
||||||
|
<Outputs>%(Filename).spv</Outputs>
|
||||||
|
</CustomBuild>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
|
@ -154,9 +163,6 @@
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</ExcludedFromBuild>
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
|
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</ExcludedFromBuild>
|
||||||
<FileType>Document</FileType>
|
<FileType>Document</FileType>
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">slangc %(FullPath) -profile sm_6_6 -target spirv -o %(Filename).spv</Command>
|
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Compiling %(Filename).slang</Message>
|
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">%(Filename).spv</Outputs>
|
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">slangc %(FullPath) -profile sm_6_6 -target spirv -o %(Filename).spv</Command>
|
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">slangc %(FullPath) -profile sm_6_6 -target spirv -o %(Filename).spv</Command>
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Compiling %(Filename).slang</Message>
|
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Compiling %(Filename).slang</Message>
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(Filename).spv</Outputs>
|
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(Filename).spv</Outputs>
|
||||||
|
|
|
||||||
7
PLAN.md
7
PLAN.md
|
|
@ -21,7 +21,12 @@
|
||||||
- [X] Create Vertex buffer
|
- [X] Create Vertex buffer
|
||||||
- [X] Load texture
|
- [X] Load texture
|
||||||
- [X] Draw
|
- [X] Draw
|
||||||
- [ ] Refactor
|
- [ ] Render Sponza
|
||||||
|
- [X] Load GLTF Scene
|
||||||
|
- [ ] Support Albedo
|
||||||
|
- [ ] Support Normal
|
||||||
|
- [ ] Support Metal/Rough
|
||||||
|
- [ ] Support Emission
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
- [ ] Scene Rendering
|
- [ ] Scene Rendering
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue