| 59 | { |
| 60 | |
| 61 | const char* HnRenderPassParams::GetSelectionTypeString(SelectionType Type) |
| 62 | { |
| 63 | switch (Type) |
| 64 | { |
| 65 | case SelectionType::All: |
| 66 | return "All"; |
| 67 | case SelectionType::Unselected: |
| 68 | return "Unselected"; |
| 69 | case SelectionType::Selected: |
| 70 | return "Selected"; |
| 71 | default: |
| 72 | UNEXPECTED("Unexpected selection type"); |
| 73 | return "Unknown"; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | pxr::HdRenderPassSharedPtr HnRenderPass::Create(pxr::HdRenderIndex* pIndex, |
| 78 | const pxr::HdRprimCollection& Collection) |
nothing calls this directly
no outgoing calls
no test coverage detected