| 503 | } |
| 504 | |
| 505 | void ProcessorClient::hideEditor() { |
| 506 | traceScope(); |
| 507 | |
| 508 | std::lock_guard<std::mutex> lock(m_cmdMtx); |
| 509 | |
| 510 | Message<HidePlugin> msg(this); |
| 511 | msg.send(m_sockCmdOut.get()); |
| 512 | |
| 513 | m_lastScreenBounds = {}; |
| 514 | } |
| 515 | |
| 516 | bool ProcessorClient::supportsDoublePrecisionProcessing() { return m_supportsDoublePrecision; } |
| 517 |