You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-24 15:26:15 +00:00
Merge pull request #81074 from DarioSamo/flip-motion-vectors
Flip convention of motion vectors.
This commit is contained in:
@@ -320,7 +320,7 @@ vec3 temporal_antialiasing(uvec2 pos_group_top_left, uvec2 pos_group, uvec2 pos_
|
||||
vec2 velocity = imageLoad(velocity_buffer, ivec2(pos_screen)).xy;
|
||||
|
||||
// Get reprojected uv
|
||||
vec2 uv_reprojected = uv - velocity;
|
||||
vec2 uv_reprojected = uv + velocity;
|
||||
|
||||
// Get input color
|
||||
vec3 color_input = load_color(pos_group);
|
||||
|
||||
Reference in New Issue
Block a user