Interface IABGRConvert<T>

interface IABGRConvert<T> {
    fromABGR: ((x, out?) => T);
    toABGR: Fn<T, number>;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

fromABGR: ((x, out?) => T)

Converts given ABGR value into internal pixel format.

Type declaration

    • (x, out?): T
    • Parameters

      • x: number
      • Optional out: T

      Returns T

toABGR: Fn<T, number>

Converts given internal pixel format value to packed ABGR.

Generated using TypeDoc