fix wrong value in scene uniform buffer struct

This commit is contained in:
sphynx-skillcap
2025-06-10 23:20:11 +03:00
parent c958ee4247
commit a26b7cb74d

View File

@ -15,9 +15,9 @@ struct SceneData {
mat4 view_matrix;
// only used for multiview
mat4 projection_matrix_view[MAX_VIEWS];
mat4 inv_projection_matrix_view[MAX_VIEWS];
vec4 eye_offset[MAX_VIEWS];
mat4 projection_matrix_view[2];
mat4 inv_projection_matrix_view[2];
vec4 eye_offset[2];
// Used for billboards to cast correct shadows.
mat4 main_cam_inv_view_matrix;