API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceFragmentOutputCounts

@codexo/exojs / rendering / stable

Per-language count of the color attachments a fragment stage declares an output for, as reflected from the shader source. `null` means the count could not be established - the language is not supplied, or the source uses a shape the reflection cannot resolve - and never means "declares none". Treat it as unknown rather than as a failed requirement.

2
props
0
methods
0
events
Import
import { FragmentOutputCounts } from '@codexo/exojs'

Per-language count of the color attachments a fragment stage declares an output for, as reflected from the shader source.

`null` means the count could not be established - the language is not supplied, or the source uses a shape the reflection cannot resolve - and never means "declares none". Treat it as unknown rather than as a failed requirement.

Properties2
glsl: null | number
Outputs declared by the GLSL fragment stage.
wgsl: null | number
Outputs declared by the WGSL fragment entry point.
Source