Skip to content

RenderPassParams<Context, U>

ts
type RenderPassParams<Context, U> = Omit<
  RawRenderPassParams<UniformValues>,
  "uniforms"
> & {
  uniforms?: U;
};

Parameters for creating a managed renderPass.

Type Declaration

NameTypeDescription
uniforms?UUniform values, synchronous functions, promises, or media descriptors.

Type Parameters

Context

Context extends UniformContext = UniformContext

U

U extends UniformSources<Context> = UniformSources<Context>

Released under the MIT License.