All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jetbrains.skia.MipmapMode.kt Maven / Gradle / Ivy

The newest version!
package org.jetbrains.skia

enum class MipmapMode {
    /**
     * ignore mipmap levels, sample from the "base"
     */
    NONE,

    /**
     * sample from the nearest level
     */
    NEAREST,

    /**
     * interpolate between the two nearest levels
     */
    LINEAR;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy