| 73 | return d->_dxgi->getOutputDeviceList(); |
| 74 | } |
| 75 | |
| 76 | QImage ElaDxgiManager::grabScreenToImage() const |
| 77 | { |
| 78 | Q_D(const ElaDxgiManager); |
| 79 | if (!d->_dxgi->getIsInitSuccess()) |
| 80 | { |
| 81 | return {}; |
| 82 | } |
| 83 | return d->_dxgi->getGrabImage(); |
| 84 | } |
| 85 | |
| 86 | void ElaDxgiManager::startGrabScreen() |
nothing calls this directly
no test coverage detected