| 1 | import type { PicaCanvas, PicaCanvasCtx } from './types' |
| 2 | |
| 3 | export interface SupportedFeatures { |
| 4 | canvas: boolean |
| 5 | offscreen_canvas: boolean |
| 6 | may_be_worker: boolean |
| 7 | create_image_bitmap: boolean |
| 8 | safari_put_image_data_fix: boolean |
| 9 | bug_canvas_orientation_region: boolean |
| 10 | bug_image_bitmap_orientation_region: boolean |
| 11 | cib_resize: boolean |
| 12 | } |
| 13 | |
| 14 | // 3x2 JPEG with EXIF orientation 6 (rotate 90deg clockwise when decoded). |
| 15 | // |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…