| 1082 | } |
| 1083 | |
| 1084 | void RayTracingPipeline::get_shader_group_handles(void * out_blob, uint32_t first_group, int32_t group_count) const |
| 1085 | { |
| 1086 | auto daxa_res = daxa_ray_tracing_pipeline_get_shader_group_handles( |
| 1087 | rc_cast<daxa_RayTracingPipeline>(this->object), out_blob, first_group, group_count); |
| 1088 | check_result(daxa_res, "failed in get_shader_group_handles"); |
| 1089 | } |
| 1090 | |
| 1091 | auto RayTracingPipeline::inc_refcnt(ImplHandle const * object) -> u64 |
| 1092 | { |
nothing calls this directly
no test coverage detected