/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/rendering/renderers/gl/shader/const.ts
11 строк
421 B
Zyie
chore: add standard/advanced tags to documentation (#11448)
03 июн 2025, 10:12
Не верифицирован
03 июн 2025, 10:12
7d91234
Код
Авторство
О чём код?
/** * The precision types available in WebGL shaders. * * These types define the precision of floating-point calculations in shaders. * - `highp`: High precision, typically 32-bit floating-point. * - `mediump`: Medium precision, typically 16-bit floating-point. * - `lowp`: Low precision, typically 8-bit floating-point. * @category rendering * @advanced */ export type PRECISION = `highp` | `mediump` | `lowp`;