/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/rendering/renderers/shared/instructions/Instruction.ts
14 строк
384 B
Zyie
chore: add standard/advanced tags to documentation (#11448)
03 июн 2025, 10:12
Не верифицирован
03 июн 2025, 10:12
7d91234
Код
Авторство
О чём код?
/** * An instruction that can be executed by the renderer * @category rendering * @advanced */ export interface Instruction { /** a the id of the render pipe that can run this instruction */ renderPipeId: string; /** the name of the instruction */ action?: string; /** true if this instruction can be compiled into a WebGPU bundle */ canBundle: boolean; }