Skip to content

Commit

Permalink
Added images
Browse files Browse the repository at this point in the history
  • Loading branch information
krupitskas committed Nov 22, 2024
1 parent 246c5d9 commit 8523d07
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 97 deletions.
4 changes: 0 additions & 4 deletions Docs/Docs.md

This file was deleted.

3 changes: 3 additions & 0 deletions Docs/Images/Pathtracing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions Docs/Images/Raster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 0 additions & 5 deletions Docs/Task_Indirect_Draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions Docs/Task_Reference_PT.md

This file was deleted.

75 changes: 0 additions & 75 deletions Docs/Tasks.md

This file was deleted.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

</div>

<p align="center">
<img src="Docs/Images/Raster.png" style="width: 40%; height: 40%">
<img src="Docs/Images/Pathtracing.png" style="width: 40%; height: 40%">
</p>

## Current research goal idea

Yasno has two modes - raster and pathtracing for reference image.
Expand Down
2 changes: 1 addition & 1 deletion Yasno/Renderer/ShaderStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ namespace ysn
return false;
}

dxc_include_handler->LoadSource(L"", m_include_blob.get());
//dxc_include_handler->LoadSource(L"", m_include_blob.get());

return true;
}
Expand Down
1 change: 1 addition & 0 deletions Yasno/Yasno.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@
<None Include="..\Docs\Tasks.md" />
<None Include="..\Docs\Task_Indirect_Draw.md" />
<None Include="..\Docs\Task_Reference_PT.md" />
<None Include="..\Shaders\CommonStructures.hlsl" />
<None Include="..\Shaders\ConvertEquirectangularMap_VS.hlsl" />
<None Include="..\Shaders\Skybox_PS.hlsl" />
<None Include="..\Shaders\Skybox_VS.hlsl" />
Expand Down
6 changes: 6 additions & 0 deletions Yasno/Yasno.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@
<ClCompile Include="Graphics\RtxMaterial.cpp">
<Filter>Source\Graphics</Filter>
</ClCompile>
<ClCompile Include="Renderer\GpuBuffer.cpp">
<Filter>Source</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Yasno\Camera.hpp">
Expand Down Expand Up @@ -466,6 +469,9 @@
<None Include="..\Docs\Task_Reference_PT.md">
<Filter>Docs</Filter>
</None>
<None Include="..\Shaders\CommonStructures.hlsl">
<Filter>Shaders</Filter>
</None>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
Expand Down
14 changes: 7 additions & 7 deletions Yasno/Yasno/Yasno.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,17 +259,17 @@ namespace ysn

bool load_result = false;

//{
// LoadingParameters loading_parameters;
// loading_parameters.model_modifier = XMMatrixScaling(0.01f, 0.01f, 0.01f);
// load_result = LoadGltfFromFile(m_render_scene, GetVirtualFilesystemPath(L"Assets/Sponza/Sponza.gltf"), loading_parameters);
//}

{
LoadingParameters loading_parameters;
load_result = LoadGltfFromFile(m_render_scene, GetVirtualFilesystemPath(L"Assets/DamagedHelmet/DamagedHelmet.gltf"), loading_parameters);
loading_parameters.model_modifier = XMMatrixScaling(0.01f, 0.01f, 0.01f);
load_result = LoadGltfFromFile(m_render_scene, GetVirtualFilesystemPath(L"Assets/Sponza/Sponza.gltf"), loading_parameters);
}

//{
// LoadingParameters loading_parameters;
// load_result = LoadGltfFromFile(m_render_scene, GetVirtualFilesystemPath(L"Assets/DamagedHelmet/DamagedHelmet.gltf"), loading_parameters);
//}

//{
// LoadingParameters loading_parameters;
// loading_parameters.model_modifier = XMMatrixScaling(0.01f, 0.01f, 0.01f);
Expand Down

0 comments on commit 8523d07

Please sign in to comment.