ImageData
abstract class ImageData(val width: Int, val height: Int, val format: ColorFormat, val type: ColorType, val flipV: Boolean, var data: MPPBuffer?, val mipmapData: List<MPPBuffer> = emptyList()) : AutoCloseable(source)
Represents image data with specific properties such as dimensions, format, type, and optional mipmap levels.
This is an abstract class used as a base for implementing various image data-related structures or functionalities.