WIP: Draw: Sub Handles #105175

Closed
Miguel Pozo wants to merge 5 commits from pragma37/blender:pull-thin-handles-2 into main

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

View File

@ -31,12 +31,12 @@ void main()
frustum = isect_data_setup(pyramid);
}
uint resource_id = resource_ids_buf[gl_GlobalInvocationID.x];
uint _resource_id = resource_ids_buf[gl_GlobalInvocationID.x];
IsectBox box = isect_data_setup(bounds_buf[resource_id].bounding_corners[0].xyz,
bounds_buf[resource_id].bounding_corners[1].xyz,
bounds_buf[resource_id].bounding_corners[2].xyz,
bounds_buf[resource_id].bounding_corners[3].xyz);
IsectBox box = isect_data_setup(bounds_buf[_resource_id].bounding_corners[0].xyz,
bounds_buf[_resource_id].bounding_corners[1].xyz,
bounds_buf[_resource_id].bounding_corners[2].xyz,
bounds_buf[_resource_id].bounding_corners[3].xyz);
int clipped = 0;
/* NDC space post projection [-1..1] (unclamped). */