Skip to content

Commit

Permalink
build(deps): bump third-party/libdisplaydevice from 63599b0 to `197…
Browse files Browse the repository at this point in the history
…5f75` (#3576)

build(deps): bump third-party/libdisplaydevice

Bumps [third-party/libdisplaydevice](https://github.com/LizardByte/libdisplaydevice) from `63599b0` to `1975f75`.
- [Release notes](https://github.com/LizardByte/libdisplaydevice/releases)
- [Commits](LizardByte/libdisplaydevice@63599b0...1975f75)

---
updated-dependencies:
- dependency-name: third-party/libdisplaydevice
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 21, 2025
1 parent 299b123 commit 31866fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/libdisplaydevice
Submodule libdisplaydevice updated 81 files
+53 −10 .clang-format
+8 −1 .github/workflows/update-docs.yml
+2 −0 scripts/update_clang_format.py
+11 −17 src/common/file_settings_persistence.cpp
+3 −6 src/common/include/display_device/audio_context_interface.h
+11 −15 src/common/include/display_device/detail/json_converter.h
+53 −59 src/common/include/display_device/detail/json_serializer_details.h
+3 −6 src/common/include/display_device/file_settings_persistence.h
+1 −1 src/common/include/display_device/json.h
+10 −17 src/common/include/display_device/logging.h
+3 −6 src/common/include/display_device/noop_audio_context.h
+3 −6 src/common/include/display_device/noop_settings_persistence.h
+66 −73 src/common/include/display_device/retry_scheduler.h
+5 −10 src/common/include/display_device/settings_manager_interface.h
+3 −6 src/common/include/display_device/settings_persistence_interface.h
+6 −12 src/common/include/display_device/types.h
+2 −6 src/common/json_serializer.cpp
+20 −26 src/common/logging.cpp
+3 −6 src/common/noop_audio_context.cpp
+3 −6 src/common/noop_settings_persistence.cpp
+3 −5 src/common/retry_scheduler.cpp
+8 −16 src/common/types.cpp
+2 −4 src/windows/include/display_device/windows/persistent_state.h
+12 −21 src/windows/include/display_device/windows/settings_manager.h
+17 −51 src/windows/include/display_device/windows/settings_utils.h
+7 −13 src/windows/include/display_device/windows/types.h
+10 −20 src/windows/include/display_device/windows/win_api_layer.h
+10 −20 src/windows/include/display_device/windows/win_api_layer_interface.h
+19 −38 src/windows/include/display_device/windows/win_api_utils.h
+13 −26 src/windows/include/display_device/windows/win_display_device.h
+13 −26 src/windows/include/display_device/windows/win_display_device_interface.h
+1 −1 src/windows/json.cpp
+10 −13 src/windows/persistent_state.cpp
+60 −65 src/windows/settings_manager_apply.cpp
+11 −13 src/windows/settings_manager_general.cpp
+29 −32 src/windows/settings_manager_revert.cpp
+58 −87 src/windows/settings_utils.cpp
+6 −12 src/windows/types.cpp
+78 −105 src/windows/win_api_layer.cpp
+61 −89 src/windows/win_api_utils.cpp
+34 −38 src/windows/win_display_device_general.cpp
+15 −15 src/windows/win_display_device_hdr.cpp
+27 −31 src/windows/win_display_device_modes.cpp
+13 −15 src/windows/win_display_device_primary.cpp
+25 −34 src/windows/win_display_device_topology.cpp
+15 −23 tests/fixtures/fixtures.cpp
+12 −21 tests/fixtures/include/fixtures/fixtures.h
+4 −5 tests/fixtures/include/fixtures/json_converter_test.h
+3 −6 tests/fixtures/include/fixtures/test_utils.h
+5 −8 tests/fixtures/test_utils.cpp
+34 −59 tests/unit/general/test_comparison.cpp
+24 −23 tests/unit/general/test_file_settings_persistence.cpp
+55 −57 tests/unit/general/test_json.cpp
+30 −27 tests/unit/general/test_json_converter.cpp
+18 −18 tests/unit/general/test_logging.cpp
+1 −1 tests/unit/general/test_noop_settings_persistence.cpp
+213 −117 tests/unit/general/test_retry_scheduler.cpp
+14 −19 tests/unit/windows/test_comparison.cpp
+12 −14 tests/unit/windows/test_json_converter.cpp
+16 −12 tests/unit/windows/test_persistent_state.cpp
+208 −230 tests/unit/windows/test_settings_manager_apply.cpp
+17 −14 tests/unit/windows/test_settings_manager_general.cpp
+56 −76 tests/unit/windows/test_settings_manager_revert.cpp
+116 −123 tests/unit/windows/test_settings_utils.cpp
+32 −36 tests/unit/windows/test_win_api_layer.cpp
+81 −95 tests/unit/windows/test_win_api_utils.cpp
+65 −61 tests/unit/windows/test_win_display_device_general.cpp
+43 −44 tests/unit/windows/test_win_display_device_hdr.cpp
+120 −126 tests/unit/windows/test_win_display_device_modes.cpp
+41 −42 tests/unit/windows/test_win_display_device_primary.cpp
+69 −71 tests/unit/windows/test_win_display_device_topology.cpp
+11 −10 tests/unit/windows/test_win_playground.cpp
+18 −34 tests/unit/windows/utils/comparison.cpp
+14 −28 tests/unit/windows/utils/comparison.h
+4 −8 tests/unit/windows/utils/guards.cpp
+4 −8 tests/unit/windows/utils/guards.h
+11 −11 tests/unit/windows/utils/helpers.cpp
+2 −4 tests/unit/windows/utils/helpers.h
+21 −22 tests/unit/windows/utils/mock_win_api_layer.cpp
+24 −21 tests/unit/windows/utils/mock_win_display_device.cpp
+1 −1 third-party/doxyconfig

0 comments on commit 31866fd

Please sign in to comment.