Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import type CPUFallbackLookupTable from './CPUFallbackLookupTable'; import type CPUFallbackLUT from './CPUFallbackLUT'; interface CPUFallbackRenderingTools { renderCanvas?: HTMLCanvasElement; lastRenderedIsColor?: boolean; lastRenderedImageId?: string; lastRenderedViewport?: { windowWidth: number | number[]; windowCenter: number | number[]; invert: boolean; rotation: number; hflip: boolean; vflip: boolean; modalityLUT: CPUFallbackLUT; voiLUT: CPUFallbackLUT; colormap: unknown; }; renderCanvasContext?: CanvasRenderingContext2D; colormapId?: string; colorLUT?: CPUFallbackLookupTable; renderCanvasData?: ImageData; } export type { CPUFallbackRenderingTools as default }; |