1
0
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:
Rémi Verschelde
2023-08-29 12:46:44 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -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);