File indexing completed on 2026-04-09 07:49:03
0001 #pragma once
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include <string>
0022
0023 struct Properties
0024 {
0025 unsigned rtcoreVersion ;
0026 unsigned limitMaxTraceDepth ;
0027 unsigned limitMaxTraversableGraphDepth ;
0028 unsigned limitMaxPrimitivesPerGas ;
0029 unsigned limitMaxInstancesPerIas ;
0030 unsigned limitMaxInstanceId ;
0031 unsigned limitNumBitsInstanceVisibilityMask ;
0032 unsigned limitMaxSbtRecordsPerGas ;
0033 unsigned limitMaxSbtOffset ;
0034
0035 Properties();
0036
0037 unsigned visibilityMask_FULL() const ;
0038 unsigned visibilityMask(unsigned idx) const ;
0039
0040 std::string desc() const ;
0041 };