Wacom input_server device: Support Cintiq13HD

Change-Id: I295e346a1c919b68f7186a06c25d85271bc348f6
Reviewed-on: https://review.haiku-os.org/c/haiku/+/9155
Reviewed-by: waddlesplash <[email protected]>
Haiku-Format: Haiku-format Bot <[email protected]>
This commit is contained in:
Ilmari "ilzu" Siiteri
2025-04-04 15:49:27 +00:00
committed by waddlesplash
parent 8f2748e848
commit 1cf14a76b2
@@ -270,6 +270,9 @@ TabletDevice::DetectDevice(const DeviceReader* reader)
case 0x037b: // One by Wacom CTL-672 case 0x037b: // One by Wacom CTL-672
SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT); SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT);
break; break;
case 0x0304: // Wacom Cintiq 13HD
SetDevice(29376.0, 16524.0, DEVICE_CINTIQ);
break;
default: default:
status = B_BAD_VALUE; status = B_BAD_VALUE;
break; break;
@@ -889,6 +892,9 @@ TabletDevice::_GetName(uint16 productID, const char** name) const
case 0x037b: case 0x037b:
*name = "One by Wacom (CTL-672)"; *name = "One by Wacom (CTL-672)";
break; break;
case 0x0304:
*name = "Wacom Cintiq 13HD";
break;
default: default:
*name = "<unkown wacom tablet>"; *name = "<unkown wacom tablet>";