1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-18 14:21:41 +00:00

Merge pull request #66898 from aaronfranke/proj-mat-columns

Rename Projection `matrix` to `columns`
This commit is contained in:
Rémi Verschelde
2022-10-05 08:35:26 +02:00
25 changed files with 284 additions and 282 deletions

View File

@@ -382,7 +382,7 @@ bool OpenXRVulkanExtension::create_projection_fov(const XrFovf p_fov, double p_z
for (int j = 0; j < 4; j++) {
for (int i = 0; i < 4; i++) {
r_camera_matrix.matrix[j][i] = matrix.m[j * 4 + i];
r_camera_matrix.columns[j][i] = matrix.m[j * 4 + i];
}
}