Refactor: GLSL: Cleanup Clip Space vs. NDC Space naming #105423

Closed
Prakhar-Singh-Chouhan wants to merge 15 commits from (deleted):fix#105070 into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 0 additions and 2 deletions
Showing only changes of commit 34383d0af9 - Show all commits

View File

@ -86,8 +86,6 @@ void main()
vec3 view_pos1 = point_world_to_view(world_pos1);
vec4 out_pos0 = point_world_to_homogenous(world_pos0);
fclem marked this conversation as resolved

Same thing here.

Same thing here.
vec4 out_pos1 = point_world_to_homogenous(world_pos1);
/* Offset Z position for retopology overlay. */
out_pos0.z += get_homogenous_z_offset(view_pos0.z, out_pos0.w, retopologyOffset);