UNPKG

@motion-core/motion-gpu

Version:

Framework-agnostic WebGPU runtime for fullscreen WGSL shaders with explicit Svelte, React, and Vue adapter entrypoints.

12 lines 994 B
/** * Svelte adapter advanced entrypoint for MotionGPU. */ export * from './index.js'; export { applySchedulerPreset, captureSchedulerDebugSnapshot } from '../core/scheduler-helpers.js'; export { setMotionGPUUserContext, useMotionGPUUserContext } from './use-motiongpu-user-context.js'; export type { ApplySchedulerPresetOptions, SchedulerDebugSnapshot, SchedulerPreset, SchedulerPresetConfig } from '../core/scheduler-helpers.js'; export type { MotionGPUUserContext, MotionGPUUserNamespace } from './motiongpu-context.js'; export type { FrameProfilingSnapshot, FrameKey, FrameTaskInvalidation, FrameTaskInvalidationToken, FrameRunTimings, FrameScheduleSnapshot, FrameStage, FrameStageCallback, FrameTimingStats, FrameTask } from '../core/frame-registry.js'; export type { SetMotionGPUUserContextOptions } from './use-motiongpu-user-context.js'; export type { RenderPassContext, RenderTarget, UniformLayout, UniformLayoutEntry } from '../core/types.js'; //# sourceMappingURL=advanced.d.ts.map