commonMain.earth.worldwind.render.image.ImageConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwind-jvm Show documentation
Show all versions of worldwind-jvm Show documentation
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