@novorender/api / RenderStateDynamicSampler
Interface: RenderStateDynamicSampler
Defined in: @novorender/src/core3d/state/dynamic.ts:30
Texture sampled related state
See
https://en.wikipedia.org/wiki/Texture_filtering https://learnopengl.com/Getting-started/Textures
Properties
magnificationFilter?
readonly optional magnificationFilter: MagFilterString;
Defined in: @novorender/src/core3d/state/dynamic.ts:39
Magnification filter
Default Value
"LINEAR"
minificationFilter?
readonly optional minificationFilter: MinFilterString;
Defined in: @novorender/src/core3d/state/dynamic.ts:34
Minification filter
Default Value
"NEAREST_MIPMAP_LINEAR"
wrap?
readonly optional wrap: readonly [WrapString, WrapString];
Defined in: @novorender/src/core3d/state/dynamic.ts:44
Tuple of S and T wrap mode, respectively.
Default Value
["REPEAT", "REPEAT"]