2026-06-26 07:23:52 +00:00
|
|
|
import { type SkImage } from '@shopify/react-native-skia';
|
2026-07-02 02:07:32 +00:00
|
|
|
/** Continuous RGBA buffer → Skia image (direct memory transfer for freq layers / work buffer origin, avoids PNG roundtrip) */
|
2026-06-26 07:23:52 +00:00
|
|
|
export declare function rgbaBufferToSkiaImage(buffer: Uint8Array, cols: number, rows: number): SkImage | null;
|