/// /// PixelFormat.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.image import androidx.annotation.Keep import com.facebook.proguard.annotations.DoNotStrip /** * Represents the JavaScript enum/union "PixelFormat". */ @DoNotStrip @Keep enum class PixelFormat(@DoNotStrip @Keep val value: Int) { ARGB(0), BGRA(1), ABGR(2), RGBA(3), XRGB(4), BGRX(5), XBGR(6), RGBX(7), RGB(8), BGR(9), UNKNOWN(10); companion object }