Skip to content

Commit 8b500f7

Browse files
author
Floyd Huizinga
committed
Rename ImageLibrary to Texturing
1 parent 61c974c commit 8b500f7

26 files changed

+33
-37
lines changed

docs/1-introduction/1-3-models/1-3-0-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ how coordinate systems work and how we can make use of them.
1414

1515
At the end we will also be able to roam around freely by using a camera.
1616

17-
[Loading Images](1-3-1-image-library.md)
17+
[Loading Images](1-3-1-texturing.md)
1818

1919
[Loading Meshes](1-3-2-loading-meshes.md)
2020

@@ -28,4 +28,4 @@ At the end we will also be able to roam around freely by using a camera.
2828

2929
[Camera](1-3-7-camera.md)
3030

31-
[Next chapter](./1-3-1-image-library.md)
31+
[Next chapter](./1-3-1-texturing.md)

docs/1-introduction/1-3-models/1-3-1-image-library.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ nav:
8989
- 1-introduction/1-2-debug/1-2-5-laptop-gpus.md
9090
- Models:
9191
- 1-introduction/1-3-models/1-3-0-overview.md
92-
- 1-introduction/1-3-models/1-3-1-image-library.md
92+
- 1-introduction/1-3-models/1-3-1-texturing.md
9393
- 1-introduction/1-3-models/1-3-2-loading-meshes.md
9494
- 1-introduction/1-3-models/1-3-3-dear-imgui.md
9595
- 1-introduction/1-3-models/1-3-4-depth-buffer.md

src/Cpp/1-getting-started/1-3-1-ImageLibrary/Main.cpp

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/Cpp/1-getting-started/1-3-1-ImageLibrary/1-3-1-ImageLibrary.vcxproj renamed to src/Cpp/1-getting-started/1-3-1-Texturing/1-3-1-Texturing.vcxproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<ProjectGuid>{FAFF4FF7-7CB0-475D-AC8E-59156B3BC8B4}</ProjectGuid>
1717
<RootNamespace>My13HelloTriangle</RootNamespace>
1818
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
19+
<ProjectName>1-3-1-Texturing</ProjectName>
1920
</PropertyGroup>
2021
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
2122
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
@@ -111,14 +112,14 @@ xcopy /Y $(ProjectDir)Assets\Textures\*.* $(OutDir)Assets\Textures\</Command>
111112
<ItemGroup>
112113
<ClCompile Include="DeviceContext.cpp" />
113114
<ClCompile Include="Main.cpp" />
114-
<ClCompile Include="ImageLibraryApplication.cpp" />
115+
<ClCompile Include="TexturingApplication.cpp" />
115116
<ClCompile Include="Pipeline.cpp" />
116117
<ClCompile Include="PipelineFactory.cpp" />
117118
</ItemGroup>
118119
<ItemGroup>
119120
<ClInclude Include="Definitions.hpp" />
120121
<ClInclude Include="DeviceContext.hpp" />
121-
<ClInclude Include="ImageLibraryApplication.hpp" />
122+
<ClInclude Include="TexturingApplication.hpp" />
122123
<ClInclude Include="Pipeline.hpp" />
123124
<ClInclude Include="PipelineFactory.hpp" />
124125
<ClInclude Include="ResourceDescriptor.hpp" />

src/Cpp/1-getting-started/1-3-1-ImageLibrary/1-3-1-ImageLibrary.vcxproj.filters renamed to src/Cpp/1-getting-started/1-3-1-Texturing/1-3-1-Texturing.vcxproj.filters

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<ClCompile Include="Main.cpp">
1919
<Filter>Source Files</Filter>
2020
</ClCompile>
21-
<ClCompile Include="ImageLibraryApplication.cpp">
21+
<ClCompile Include="TexturingApplication.cpp">
2222
<Filter>Source Files</Filter>
2323
</ClCompile>
2424
<ClCompile Include="PipelineFactory.cpp">
@@ -32,7 +32,7 @@
3232
</ClCompile>
3333
</ItemGroup>
3434
<ItemGroup>
35-
<ClInclude Include="ImageLibraryApplication.hpp">
35+
<ClInclude Include="TexturingApplication.hpp">
3636
<Filter>Header Files</Filter>
3737
</ClInclude>
3838
<ClInclude Include="Definitions.hpp">

src/Cpp/1-getting-started/1-3-1-ImageLibrary/1-3-1-ImageLibrary.vcxproj.user renamed to src/Cpp/1-getting-started/1-3-1-Texturing/1-3-1-Texturing.vcxproj.user

File renamed without changes.

src/Cpp/1-getting-started/1-3-1-ImageLibrary/Assets/Models/.gitkeep renamed to src/Cpp/1-getting-started/1-3-1-Texturing/Assets/Models/.gitkeep

File renamed without changes.

src/Cpp/1-getting-started/1-3-1-ImageLibrary/Assets/Shaders/Main.ps.hlsl renamed to src/Cpp/1-getting-started/1-3-1-Texturing/Assets/Shaders/Main.ps.hlsl

File renamed without changes.

src/Cpp/1-getting-started/1-3-1-ImageLibrary/Assets/Shaders/Main.vs.hlsl renamed to src/Cpp/1-getting-started/1-3-1-Texturing/Assets/Shaders/Main.vs.hlsl

File renamed without changes.

0 commit comments

Comments
 (0)