mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
cellGem: set cellGemGetCameraState values
This commit is contained in:
parent
0b88d5f077
commit
f2bca2ef67
1 changed files with 5 additions and 1 deletions
|
@ -716,8 +716,12 @@ error_code cellGemGetCameraState(vm::ptr<CellGemCameraState> camera_state)
|
||||||
return CELL_GEM_ERROR_INVALID_PARAMETER;
|
return CELL_GEM_ERROR_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
camera_state->exposure_time = 1.0f / 60.0f; // TODO: use correct framerate
|
// TODO: use correct camera settings
|
||||||
|
camera_state->exposure = 0;
|
||||||
|
camera_state->exposure_time = 1.0f / 60.0f;
|
||||||
camera_state->gain = 1.0;
|
camera_state->gain = 1.0;
|
||||||
|
camera_state->pitch_angle = 0.0;
|
||||||
|
camera_state->pitch_angle_estimate = 0.0;
|
||||||
|
|
||||||
return CELL_OK;
|
return CELL_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue