| 266 | #endif |
| 267 | |
| 268 | void RuntimeManagerWrapper::setDynamicTypeScale(jfloat dynamicTypeScale) { |
| 269 | _dynamicTypeScale = dynamicTypeScale; |
| 270 | #if SNAP_DRAWING_ENABLED |
| 271 | auto snapDrawingRuntime = _snapDrawingRuntime.getIfCreated(); |
| 272 | if (snapDrawingRuntime) { |
| 273 | applyDynamicTypeScale(snapDrawingRuntime.value()); |
| 274 | } |
| 275 | #endif |
| 276 | } |
| 277 | |
| 278 | void RuntimeManagerWrapper::registerAssetLoader(jobject assetLoader, |
| 279 | jobject supportedSchemes, |
no test coverage detected