Add index check to OpenXRInterface::get_projection_for_view and OpenXRInterface::get_transform_for_view
This commit is contained in:
parent
140f039547
commit
8ef1719945
1 changed files with 2 additions and 0 deletions
|
@ -666,6 +666,7 @@ Transform3D OpenXRInterface::get_camera_transform() {
|
|||
Transform3D OpenXRInterface::get_transform_for_view(uint32_t p_view, const Transform3D &p_cam_transform) {
|
||||
XRServer *xr_server = XRServer::get_singleton();
|
||||
ERR_FAIL_NULL_V(xr_server, Transform3D());
|
||||
ERR_FAIL_INDEX_V_MSG(p_view, get_view_count(), Transform3D(), "View index outside bounds.");
|
||||
|
||||
Transform3D t;
|
||||
if (openxr_api && openxr_api->get_view_transform(p_view, t)) {
|
||||
|
@ -685,6 +686,7 @@ Transform3D OpenXRInterface::get_transform_for_view(uint32_t p_view, const Trans
|
|||
|
||||
Projection OpenXRInterface::get_projection_for_view(uint32_t p_view, double p_aspect, double p_z_near, double p_z_far) {
|
||||
Projection cm;
|
||||
ERR_FAIL_INDEX_V_MSG(p_view, get_view_count(), cm, "View index outside bounds.");
|
||||
|
||||
if (openxr_api) {
|
||||
if (openxr_api->get_view_projection(p_view, p_z_near, p_z_far, cm)) {
|
||||
|
|
Loading…
Reference in a new issue