| 250 | |
| 251 | #ifndef DISTRHO_OS_MAC |
| 252 | bool setScaleFactor(const double scaleFactor) |
| 253 | { |
| 254 | if (d_isEqual(fScaleFactor, scaleFactor)) |
| 255 | return true; |
| 256 | |
| 257 | fScaleFactor = scaleFactor; |
| 258 | |
| 259 | if (UIExporter* const ui = fUI.get()) |
| 260 | ui->notifyScaleFactorChanged(scaleFactor); |
| 261 | |
| 262 | return true; |
| 263 | } |
| 264 | #endif |
| 265 | |
| 266 | bool getSize(uint32_t* const width, uint32_t* const height) const |
no test coverage detected