| 694 | } |
| 695 | |
| 696 | TextureViewer::~TextureViewer() |
| 697 | { |
| 698 | if(m_Output) |
| 699 | { |
| 700 | m_Ctx.Replay().BlockInvoke([this](IReplayController *r) { m_Output->Shutdown(); }); |
| 701 | } |
| 702 | |
| 703 | m_Ctx.BuiltinWindowClosed(this); |
| 704 | m_Ctx.RemoveCaptureViewer(this); |
| 705 | delete ui; |
| 706 | } |
| 707 | |
| 708 | void TextureViewer::enterEvent(QEvent *event) |
| 709 | { |
nothing calls this directly
no test coverage detected