| 969 | } |
| 970 | |
| 971 | void Processor::updateScreenCaptureArea(int val) { |
| 972 | traceScope(); |
| 973 | if (val == Defaults::SCAREA_FULLSCREEN) { |
| 974 | m_fullscreen = !m_fullscreen; |
| 975 | } else { |
| 976 | m_additionalScreenSpace = m_additionalScreenSpace + val > 0 ? m_additionalScreenSpace + val : 0; |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | int Processor::getAdditionalScreenCapturingSpace() { |
| 981 | traceScope(); |
nothing calls this directly
no outgoing calls
no test coverage detected