Add VIRTUAL_REMOCON and VIRTUAL_MOUSE device types 17/310217/3
authorjoogab.yun <joogab.yun@samsung.com>
Wed, 24 Apr 2024 06:51:35 +0000 (15:51 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Wed, 24 Apr 2024 07:57:33 +0000 (16:57 +0900)
Change-Id: I79bb5456a5f9151fab30b2ff95dfb509b6af594a

dali/internal/window-system/tizen-wayland/ecore-wl2/window-base-ecore-wl2.cpp

index f63cd23..bd25ddf 100644 (file)
@@ -229,6 +229,16 @@ void GetDeviceSubclass(Ecore_Device_Subclass ecoreDeviceSubclass, Device::Subcla
       deviceSubclass = Device::Subclass::VIRTUAL_KEYBOARD;
       break;
     }
+    case ECORE_DEVICE_SUBCLASS_VIRTUAL_REMOCON:
+    {
+      deviceSubclass = Device::Subclass::VIRTUAL_REMOCON;
+      break;
+    }
+    case ECORE_DEVICE_SUBCLASS_VIRTUAL_MOUSE:
+    {
+      deviceSubclass = Device::Subclass::VIRTUAL_MOUSE;
+      break;
+    }
     default:
     {
       deviceSubclass = Device::Subclass::NONE;