Skip to content

Commit 315cc08

Browse files
committed
Update changelog
1 parent 0f1d013 commit 315cc08

2 files changed

Lines changed: 27 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,28 @@
1010

1111
### Removed
1212

13+
## [0.2.1] - 2025-02-24
14+
15+
### Added
16+
17+
- Approximate transparency in RT shaders
18+
- Multi-threaded pipeline initialization
19+
20+
### Fixed
21+
22+
- Inactive probes near transparent objects
23+
- Noisy recursive reflections
24+
- GI cache flickering
25+
- SSAO artifacts
26+
- Black splotches in GI
27+
- Occasional texture streaming crash
28+
29+
### Changed
30+
31+
- Improved denoising
32+
- Improved screen-space shadow (two samplers approach)
33+
- GTAO is done in half-res on medium/high
34+
1335
## [0.2.0] - 2024-11-02
1436

1537
### Added
@@ -108,6 +130,7 @@
108130
- LinearAlloc
109131

110132

111-
[Unreleased]: https://github.com/sergcpp/Eng/compare/v0.2.0...master
133+
[Unreleased]: https://github.com/sergcpp/Eng/compare/v0.2.1...master
134+
[0.2.1]: https://github.com/sergcpp/Eng/releases/v0.2.1
112135
[0.2.0]: https://github.com/sergcpp/Eng/releases/v0.2.0
113136
[0.1.0]: https://github.com/sergcpp/Eng/releases/v0.1.0

tests/test_materials.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,8 @@ void test_materials(Sys::ThreadPool &threads, const bool full, std::string_view
516516
run_image_test(threads, "complex_mat1", 34.85, NoGI);
517517
run_image_test(threads, "complex_mat1", 31.10, NoDiffGI);
518518
run_image_test(threads, "complex_mat1", 29.74, MedDiffGI);
519-
run_image_test(threads, "complex_mat1", 28.25, Full);
520-
run_image_test(threads, "complex_mat1", 28.65, Full_Ultra);
519+
run_image_test(threads, "complex_mat1", 28.70, Full);
520+
run_image_test(threads, "complex_mat1", 29.15, Full_Ultra);
521521
run_image_test(threads, "complex_mat2", 33.90, NoShadow);
522522
run_image_test(threads, "complex_mat2", 33.45, NoGI);
523523
run_image_test(threads, "complex_mat2", 27.25, NoDiffGI);
@@ -540,7 +540,7 @@ void test_materials(Sys::ThreadPool &threads, const bool full, std::string_view
540540
run_image_test(threads, "complex_mat2_moon_light", 23.50, Full_Ultra);
541541
run_image_test(threads, "complex_mat2_hdri_light", 20.80, MedDiffGI);
542542
run_image_test(threads, "complex_mat2_hdri_light", 22.10, Full);
543-
run_image_test(threads, "complex_mat2_hdri_light", 23.45, Full_Ultra);
543+
run_image_test(threads, "complex_mat2_hdri_light", 23.95, Full_Ultra);
544544
run_image_test(threads, "complex_mat2_portal_hdri", 27.25, NoGI);
545545
run_image_test(threads, "complex_mat2_portal_hdri", 24.40, NoDiffGI);
546546
run_image_test(threads, "complex_mat2_portal_hdri", 24.50, MedDiffGI);

0 commit comments

Comments
 (0)