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

commonMain.earth.worldwind.render.image.ImageConfig.kt Maven / Gradle / Ivy

Go to download

The WorldWind Kotlin SDK (WWK) includes the library, examples and tutorials for building multiplatform 3D virtual globe applications for Android, Web and Java.

The newest version!
package earth.worldwind.render.image

/**
 * Image config indicates the in-memory representation for images displayed by WorldWind components. Images are
 * typically represented in the 32-bit RGBA_8888 configuration, the highest quality available. Components that do
 * not require an alpha channel and want to conserve memory may use the 16-bit RGBA_565 configuration.
 * Accepted values are [RGBA_8888] and [RGB_565].
 */
enum class ImageConfig {
    /**
     * Indicating 32-bit RGBA_8888 image configuration.
     */
    RGBA_8888,
    /**
     * Indicating 16-bit RGBA_565 image configuration.
     */
    RGB_565;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy