| 855 | } |
| 856 | |
| 857 | bool RdApplication::IsCurrentGdiCapture() { |
| 858 | std::lock_guard<std::mutex> lk(capture_plugin_mtx_); |
| 859 | return capture_plugin_ && capture_plugin_->GetPluginId() == kGdiCapturePluginId; |
| 860 | } |
| 861 | |
| 862 | bool RdApplication::IsCurrentDdaCapture() { |
| 863 | std::lock_guard<std::mutex> lk(capture_plugin_mtx_); |
nothing calls this directly
no test coverage detected