| 249 | } |
| 250 | |
| 251 | void HnRenderPass::_Execute(const pxr::HdRenderPassStateSharedPtr& RPState, |
| 252 | const pxr::TfTokenVector& Tags) |
| 253 | { |
| 254 | // Render pass state is initialized by HnBeginFrameTask, and |
| 255 | // passed from the render Rprims task. |
| 256 | if (!RPState) |
| 257 | { |
| 258 | UNEXPECTED("Render pass state should not be null"); |
| 259 | return; |
| 260 | } |
| 261 | |
| 262 | Execute(*static_cast<HnRenderPassState*>(RPState.get()), Tags); |
| 263 | } |
| 264 | |
| 265 | HnRenderPass::EXECUTE_RESULT HnRenderPass::Execute(HnRenderPassState& RPState, const pxr::TfTokenVector& Tags) |
| 266 | { |
nothing calls this directly
no outgoing calls
no test coverage detected