RenderPassParams<Context, U>
ts
type RenderPassParams<Context, U> = Omit<
RawRenderPassParams<UniformValues>,
"uniforms"
> & {
uniforms?: U;
};Parameters for creating a managed renderPass.
Type Declaration
| Name | Type | Description |
|---|---|---|
uniforms? | U | Uniform values, synchronous functions, promises, or media descriptors. |
Type Parameters
Context
Context extends UniformContext = UniformContext
U
U extends UniformSources<Context> = UniformSources<Context>