mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 19:42:43 +00:00
Fix Occlusion Culling Buffer getting corrupted.
This commit is contained in:
parent
c6c464cf9a
commit
0f0e24016c
@ -90,18 +90,11 @@ void RaycastOcclusionCull::RaycastHZBuffer::update_camera_rays(const Transform3D
|
|||||||
td.camera_dir = -p_cam_transform.basis.get_column(2);
|
td.camera_dir = -p_cam_transform.basis.get_column(2);
|
||||||
td.camera_orthogonal = p_cam_orthogonal;
|
td.camera_orthogonal = p_cam_orthogonal;
|
||||||
|
|
||||||
Projection inv_camera_matrix = p_cam_projection.inverse();
|
// Calculate the world coordinates of the viewport.
|
||||||
Vector3 camera_corner_proj = Vector3(-1.0f, -1.0f, -1.0f);
|
Vector2 viewport_half = p_cam_projection.get_viewport_half_extents();
|
||||||
Vector3 camera_corner_view = inv_camera_matrix.xform(camera_corner_proj);
|
td.pixel_corner = p_cam_transform.xform(Vector3(-viewport_half.x, -viewport_half.y, -p_cam_projection.get_z_near()));
|
||||||
td.pixel_corner = p_cam_transform.xform(camera_corner_view);
|
Vector3 top_corner_world = p_cam_transform.xform(Vector3(-viewport_half.x, viewport_half.y, -p_cam_projection.get_z_near()));
|
||||||
|
Vector3 left_corner_world = p_cam_transform.xform(Vector3(viewport_half.x, -viewport_half.y, -p_cam_projection.get_z_near()));
|
||||||
Vector3 top_corner_proj = Vector3(-1.0f, 1.0f, -1.0f);
|
|
||||||
Vector3 top_corner_view = inv_camera_matrix.xform(top_corner_proj);
|
|
||||||
Vector3 top_corner_world = p_cam_transform.xform(top_corner_view);
|
|
||||||
|
|
||||||
Vector3 left_corner_proj = Vector3(1.0f, -1.0f, -1.0f);
|
|
||||||
Vector3 left_corner_view = inv_camera_matrix.xform(left_corner_proj);
|
|
||||||
Vector3 left_corner_world = p_cam_transform.xform(left_corner_view);
|
|
||||||
|
|
||||||
td.pixel_u_interp = left_corner_world - td.pixel_corner;
|
td.pixel_u_interp = left_corner_world - td.pixel_corner;
|
||||||
td.pixel_v_interp = top_corner_world - td.pixel_corner;
|
td.pixel_v_interp = top_corner_world - td.pixel_corner;
|
||||||
|
Loading…
Reference in New Issue
Block a user