Skip to content

Commit d1ff3b6

Browse files
authored
Bump API version (0.20.0), update CHANGELOG (#342)
* Bump API version (0.20.0), update CHANGELOG * Fix build on Windows
1 parent d9dcead commit d1ff3b6

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## [0.20.0] 17 December 2024
4+
5+
### Added
6+
7+
- Added concept of reflectivity calculated as (alpha * intensity * distance^2)
8+
- Added a new field
9+
- `RGL_FIELD_REFLECTIVITY_F32`
10+
- Added a new API call to configure reflectivity alpha values for RaytraceNode
11+
- `rgl_node_raytrace_configure_reflectivity_alpha`
12+
13+
### Fixed
14+
15+
- Fixed hit point displacement calculation resulting from the animation
16+
317
## [0.19.0] 27 September 2024
418

519
### Added

extensions.repos

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ repositories:
22
extensions/udp:
33
type: git
44
url: git@github.com:RobotecAI/RGL-extension-udp.git
5-
version: develop
5+
version: v0.20.0
66

77
extensions/weather:
88
type: git
99
url: git@github.com:RobotecAI/RGL-extension-weather.git
10-
version: develop
10+
version: v0.20.0
1111

include/rgl/api/core.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
#define RGL_API NO_MANGLING RGL_VISIBLE
5151

5252
#define RGL_VERSION_MAJOR 0
53-
#define RGL_VERSION_MINOR 19
53+
#define RGL_VERSION_MINOR 20
5454
#define RGL_VERSION_PATCH 0
5555

5656
// Invalid Entity ID is assign to rays that does not hit any Entity.

test/src/scene/reflectivityTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct ReflectivityTest : public RGLTestWithParam<std::tuple<float, unsigned cha
1111
INSTANTIATE_TEST_SUITE_P(Parametrized, ReflectivityTest,
1212
testing::Combine(
1313
testing::Values(0.012f, 0.12f, 1.23f),
14-
testing::Values(u_char(0), u_char(127), u_char(255)),
14+
testing::Values(static_cast<unsigned char>(0), static_cast<unsigned char>(127), static_cast<unsigned char>(255)),
1515
testing::Values(0.012, 0.123, 1.23)));
1616

1717
TEST_P(ReflectivityTest, read_value)

0 commit comments

Comments
 (0)