| 61 | } |
| 62 | |
| 63 | void sibr::TexturedMeshView::onGUI() |
| 64 | { |
| 65 | if (ImGui::Begin("Textured Mesh Renderer Settings")) { |
| 66 | |
| 67 | // Poisson settings. |
| 68 | ImGui::Checkbox("Poisson ", &_poissonBlend); ImGui::SameLine(); |
| 69 | ImGui::Checkbox("Poisson fix", &_poissonRenderer->enableFix()); |
| 70 | |
| 71 | } |
| 72 | ImGui::End(); |
| 73 | } |
| 74 |
nothing calls this directly
no outgoing calls
no test coverage detected