renamed SetTouchScreenOutputRanges to SetTouchScreenOutputRanges [20.0.0+]
All checks were successful
eden-build / source (push) Successful in 4m40s
eden-build / linux (push) Successful in 23m43s
eden-build / android (push) Successful in 19m7s
eden-build / windows (msvc) (push) Successful in 1h6m17s

This commit is contained in:
Pavel Barabanov 2025-05-03 06:26:24 +03:00
parent 400ce804f0
commit 76fd41dc5d
4 changed files with 5 additions and 5 deletions

View file

@ -82,9 +82,9 @@ Result TouchScreen::SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32
return ResultSuccess; return ResultSuccess;
} }
Result TouchScreen::SetTouchScreenResolution(u32 width, u32 height, u64 aruid) { Result TouchScreen::SetTouchScreenOutputRanges(u32 width, u32 height, u64 aruid) {
std::scoped_lock lock{mutex}; std::scoped_lock lock{mutex};
return touch_resource->SetTouchScreenResolution(width, height, aruid); return touch_resource->SetTouchScreenOutputRanges(width, height, aruid);
} }
Result TouchScreen::SetTouchScreenConfiguration( Result TouchScreen::SetTouchScreenConfiguration(

View file

@ -42,7 +42,7 @@ public:
Result ProcessTouchScreenAutoTune(); Result ProcessTouchScreenAutoTune();
Result SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32 point2_x, f32 point2_y); Result SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32 point2_x, f32 point2_y);
Result SetTouchScreenResolution(u32 width, u32 height, u64 aruid); Result SetTouchScreenOutputRanges(u32 width, u32 height, u64 aruid);
Result SetTouchScreenConfiguration(const Core::HID::TouchScreenConfigurationForNx& mode, Result SetTouchScreenConfiguration(const Core::HID::TouchScreenConfigurationForNx& mode,
u64 aruid); u64 aruid);

View file

@ -296,7 +296,7 @@ void TouchResource::SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32
}; };
} }
Result TouchResource::SetTouchScreenResolution(u32 width, u32 height, u64 aruid) { Result TouchResource::SetTouchScreenOutputRanges(u32 width, u32 height, u64 aruid) {
std::scoped_lock lock{*shared_mutex}; std::scoped_lock lock{*shared_mutex};
for (std::size_t aruid_index = 0; aruid_index < AruidIndexMax; aruid_index++) { for (std::size_t aruid_index = 0; aruid_index < AruidIndexMax; aruid_index++) {

View file

@ -66,7 +66,7 @@ public:
Result ProcessTouchScreenAutoTune(); Result ProcessTouchScreenAutoTune();
void SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32 point2_x, f32 point2_y); void SetTouchScreenMagnification(f32 point1_x, f32 point1_y, f32 point2_x, f32 point2_y);
Result SetTouchScreenResolution(u32 width, u32 height, u64 aruid); Result SetTouchScreenOutputRanges(u32 width, u32 height, u64 aruid);
Result SetTouchScreenConfiguration( Result SetTouchScreenConfiguration(
const Core::HID::TouchScreenConfigurationForNx& touch_configuration, u64 aruid); const Core::HID::TouchScreenConfigurationForNx& touch_configuration, u64 aruid);