everything related to the FW 20 has been deleted.

This commit is contained in:
Pavel Barabanov 2025-05-12 03:11:56 +03:00 committed by swurl
parent 7e943732bf
commit 5608ab1cd4
Signed by: crueter
GPG key ID: A5A7629F109C8FD1
35 changed files with 27 additions and 278 deletions

View file

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

View file

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

View file

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

View file

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