diff options
Diffstat (limited to 'tests/hardware/struct-offset.cpp')
-rw-r--r-- | tests/hardware/struct-offset.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/hardware/struct-offset.cpp b/tests/hardware/struct-offset.cpp index 6f86f030..0b0f053a 100644 --- a/tests/hardware/struct-offset.cpp +++ b/tests/hardware/struct-offset.cpp @@ -216,7 +216,9 @@ void CheckOffsets(void) { CHECK_MEMBER_AT(camera_module_t, open_legacy, 144, 280); CHECK_MEMBER_AT(camera_module_t, set_torch_mode, 148, 288); CHECK_MEMBER_AT(camera_module_t, init, 152, 296); - CHECK_MEMBER_AT(camera_module_t, reserved, 156, 304); + CHECK_MEMBER_AT(camera_module_t, get_physical_camera_info, 156, 304); + CHECK_MEMBER_AT(camera_module_t, is_stream_combination_supported, 160, 312); + CHECK_MEMBER_AT(camera_module_t, reserved, 164, 320); //Types defined in camera3.h CHECK_MEMBER_AT(camera3_device_ops_t, initialize, 0, 0); @@ -227,6 +229,7 @@ void CheckOffsets(void) { CHECK_MEMBER_AT(camera3_device_ops_t, get_metadata_vendor_tag_ops, 20, 40); CHECK_MEMBER_AT(camera3_device_ops_t, dump, 24, 48); CHECK_MEMBER_AT(camera3_device_ops_t, flush, 28, 56); - CHECK_MEMBER_AT(camera3_device_ops_t, reserved, 32, 64); + CHECK_MEMBER_AT(camera3_device_ops_t, signal_stream_flush, 32, 64); + CHECK_MEMBER_AT(camera3_device_ops_t, reserved, 36, 72); } |