Skip to content

Commit f7d5603

Browse files
committed
-Dev: PBR Sky added
1 parent e679715 commit f7d5603

File tree

12 files changed

+177
-312
lines changed

12 files changed

+177
-312
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ The main feautures of the library are:
5555
- On the fly shader compiling.
5656
- Diffuse and Specular IBL.
5757
- Physically Based Bloom.
58+
- Physically Based Sky.
5859
- Ray Marched SSR.
5960
- Scene and scene objects abstractions.
6061
- Texture loading with mipmapping.

examples/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ add_executable(RendererApp ${APP_SOURCES})
1414
add_executable(RotatingKabuto "rotating-kabuto/main.cpp" )
1515

1616
#DEMO 3
17-
# --- Lighting scene setup ---
17+
# --- Procedural scene setup ---
1818
file(GLOB APPL_SOURCES
19-
"lighting-test/*.cpp"
20-
"lighting-test/*.h"
19+
"procedural-sky/*.cpp"
20+
"procedural-sky/*.h"
2121
)
22-
add_executable(LightingTest ${APPL_SOURCES})
22+
add_executable(SkyTest ${APPL_SOURCES})
2323

2424
#DEMO 4
2525
# --- Raytracing Example ---
@@ -40,10 +40,10 @@ add_executable(SponzaApp ${SPONZA_SOURCES})
4040
# Link projects against Engine lib
4141
target_link_libraries(RendererApp PRIVATE VulkanEngine)
4242
target_link_libraries(RotatingKabuto PRIVATE VulkanEngine)
43-
target_link_libraries(LightingTest PRIVATE VulkanEngine)
43+
target_link_libraries(SkyTest PRIVATE VulkanEngine)
4444
target_link_libraries(RaytracingApp PRIVATE VulkanEngine)
4545
target_link_libraries(SponzaApp PRIVATE VulkanEngine)
4646

4747
target_compile_definitions(VulkanEngine PUBLIC EXAMPLES_RESOURCES_PATH="${CMAKE_CURRENT_SOURCE_DIR}/resources/")
4848

49-
set_property(TARGET RendererApp RotatingKabuto LightingTest RaytracingApp SponzaApp PROPERTY FOLDER "examples")
49+
set_property(TARGET RendererApp RotatingKabuto SkyTest RaytracingApp SponzaApp PROPERTY FOLDER "examples")

examples/lighting-test/application.cpp

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

0 commit comments

Comments
 (0)