You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// raygenShaderRecordAddress is a VkDeviceAddress of the ray generation shader binding table record used by this command.
121
154
pubraygen_shader_record_address:DeviceAddress,
155
+
/// raygenShaderRecordSize is a VkDeviceSize number of bytes corresponding to the ray generation shader binding table record at base address raygenShaderRecordAddress.
122
156
pubraygen_shader_record_size:DeviceSize,
157
+
/// missShaderBindingTableAddress is a VkDeviceAddress of the first record in the miss shader binding table used by this command.
/// missShaderBindingTableSize is a VkDeviceSize number of bytes corresponding to the total size of the miss shader binding table at missShaderBindingTableAddress that may be accessed by this command.
124
160
pubmiss_shader_binding_table_size:DeviceSize,
161
+
/// missShaderBindingTableStride is a VkDeviceSize number of bytes between records of the miss shader binding table.
125
162
pubmiss_shader_binding_table_stride:DeviceSize,
163
+
/// hitShaderBindingTableAddress is a VkDeviceAddress of the first record in the hit shader binding table used by this command.
/// hitShaderBindingTableSize is a VkDeviceSize number of bytes corresponding to the total size of the hit shader binding table at hitShaderBindingTableAddress that may be accessed by this command.
127
166
pubhit_shader_binding_table_size:DeviceSize,
167
+
/// hitShaderBindingTableStride is a VkDeviceSize number of bytes between records of the hit shader binding table.
128
168
pubhit_shader_binding_table_stride:DeviceSize,
169
+
/// callableShaderBindingTableAddress is a VkDeviceAddress of the first record in the callable shader binding table used by this command.
/// callableShaderBindingTableSize is a VkDeviceSize number of bytes corresponding to the total size of the callable shader binding table at callableShaderBindingTableAddress that may be accessed by this command.
130
172
pubcallable_shader_binding_table_size:DeviceSize,
173
+
/// callableShaderBindingTableStride is a VkDeviceSize number of bytes between records of the callable shader binding table.
0 commit comments