Files
filament/shaders/src/post_process_getters.vs
Mathias Agopian dedf276e26 Allow post-process materials to update the vertex position
we add a `position` field to PostProcessVertexInputs which the user
code can modify if needed.
2023-12-12 11:18:18 -08:00

5 lines
63 B
GLSL

/** @public-api */
vec4 getPosition() {
return position;
}