mesh2d_functions.wgsl
Import path
Functions
fn
mesh2d_position_local_to_world
(
world_from_local:
mat4x4<f32>
,
vertex_position:
vec4<f32>
)
->
vec4<f32>
fn
mesh2d_position_local_to_clip
(
world_from_local:
mat4x4<f32>
,
vertex_position:
vec4<f32>
)
->
vec4<f32>
fn
mesh2d_tangent_local_to_world
(
world_from_local:
mat4x4<f32>
,
vertex_tangent:
vec4<f32>
)
->
vec4<f32>
NOTE: The intermediate world_position assignment is important for precision purposes when using the ‘equals’ depth comparison function.