Skip to content

Commit a764f1e

Browse files
committed
Update source and support files for RRA v1.3.1 release
1 parent 17d3879 commit a764f1e

4 files changed

Lines changed: 19 additions & 15 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(RRA)
99
set(RRA_MAJOR_VERSION 1)
1010
set(RRA_MINOR_VERSION 3)
1111
if (NOT RRA_BUGFIX_NUMBER)
12-
set(RRA_BUGFIX_NUMBER 0)
12+
set(RRA_BUGFIX_NUMBER 1)
1313
endif ()
1414
if (NOT RRA_BUILD_NUMBER)
1515
set(RRA_BUILD_NUMBER 0)

RELEASE_NOTES.txt

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
Radeon Raytracing Analyzer V1.3 09/21/2023
2-
------------------------------------------
1+
Radeon Raytracing Analyzer V1.3.1 10/18/2023
2+
--------------------------------------------
33

4-
V1.3 Changes
4+
V1.3.1 Changes
55
------------------------------------
6-
1) Addition of a RAY tab, to enable the ability to visualize dispatches and individual rays.
7-
2) Ray Dispatches pane added to visualize ray dispatches and allow selection of pixels within those dispatches.
8-
3) Ray Inspector pane added to visualize individual rays and their collisions with scene objects.
9-
4) Reset button added to TLAS/BLAS viewer panes and Inspector pane to reset the UI to its default settings.
10-
5) Allow viewer UI state to be persistent between RRA sessions via a checkbox in the general settings.
11-
6) Bugs/stability fixes.
6+
1) A bugfix has been made to use the correct dispatch size for future versions of RRA to ensure backwards compatibility.
127

138
Known Issues
149
------------------------------------
@@ -27,6 +22,15 @@ Known Issues
2722
Release Notes History
2823
------------------------------------
2924

25+
V1.3 Changes
26+
------------------------------------
27+
1) Addition of a RAY tab, to enable the ability to visualize dispatches and individual rays.
28+
2) Ray Dispatches pane added to visualize ray dispatches and allow selection of pixels within those dispatches.
29+
3) Ray Inspector pane added to visualize individual rays and their collisions with scene objects.
30+
4) Reset button added to TLAS/BLAS viewer panes and Inspector pane to reset the UI to its default settings.
31+
5) Allow viewer UI state to be persistent between RRA sessions via a checkbox in the general settings.
32+
6) Bugs/stability fixes.
33+
3034
V1.2 Changes
3135
------------------------------------
3236
1) Ray face culling flags added to traversal viewer pane.

documentation/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = u'1.3.0'
57+
version = u'1.3.1'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'1.3.0'
59+
release = u'1.3.1'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

source/backend/rra_async_ray_history_loader.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ RraAsyncRayHistoryLoader::RraAsyncRayHistoryLoader(const char* file_path, int64_
3131
load_status_.incomplete_data = true;
3232
}
3333

34-
dim_x_ = std::max(metadata_.counter.dispatchRayDimensionX, metadata_.dispatchDims.dimX);
35-
dim_y_ = std::max(metadata_.counter.dispatchRayDimensionY, metadata_.dispatchDims.dimY);
36-
dim_z_ = std::max(metadata_.counter.dispatchRayDimensionZ, metadata_.dispatchDims.dimZ);
34+
dim_x_ = metadata_.counter.dispatchRayDimensionX;
35+
dim_y_ = metadata_.counter.dispatchRayDimensionY;
36+
dim_z_ = metadata_.counter.dispatchRayDimensionZ;
3737

3838
total_dispatch_indices_ = dim_x_ * dim_y_ * dim_z_;
3939

0 commit comments

Comments
 (0)