UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

27 lines (26 loc) 479 B
/** @format */ /** * Enum representing different PVR (PowerVR) texture formats. */ export declare enum PvrFormat { /** * Automatic format selection. */ auto = 0, /** * RGB format with 2 bits per channel. */ rgb2 = 1, /** * RGBA format with 2 bits per channel. */ rgba2 = 2, /** * RGB format with 4 bits per channel. */ rgb4 = 3, /** * RGBA format with 4 bits per channel. */ rgba4 = 4 }