Specifies whether Path is volatile; whether it will be altered or discarded by the caller after it is drawn. Path by default have volatile set false, allowing SkBaseDevice to attach a cache of data which speeds repeated drawing. Mark temporary paths, discarded or modified after use, as vo
(boolean isVolatile)
| 968 | * @return this |
| 969 | */ |
| 970 | @NotNull @Contract("_ -> this") |
| 971 | public Path setVolatile(boolean isVolatile) { |
| 972 | Stats.onNativeCall(); |
| 973 | _nSetVolatile(_ptr, isVolatile); |
| 974 | return this; |
| 975 | } |
| 976 | |
| 977 | /** |
| 978 | * <p>Exchanges the verb array, Point array, weights, and FillMode with other. |