You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of blending the cursor into the frame buffer, it’s much more efficient to set the hardware cursor.
I’m not aware of any crate which handle setting the icon for the hardware cursor directly. winit only allow setting the "cursor info" (Help, VerticalText, etc).
For the native client, we should create a new crate ironrdp-native-cursor-icon similar to ironrdp-native-clipboard, providing a cross-platform API for setting the cursor.
Note: the code for blending the cursor into the frame buffer should not be removed. It can be useful when implementing proxy-based recording and is also a good fallback for platforms where hardware cursor is not supported.
The text was updated successfully, but these errors were encountered:
Instead of blending the cursor into the frame buffer, it’s much more efficient to set the hardware cursor.
I’m not aware of any crate which handle setting the icon for the hardware cursor directly.
winit
only allow setting the "cursor info" (Help, VerticalText, etc).For the native client, we should create a new crate
ironrdp-native-cursor-icon
similar toironrdp-native-clipboard
, providing a cross-platform API for setting the cursor.Issue per platform:
Note: the code for blending the cursor into the frame buffer should not be removed. It can be useful when implementing proxy-based recording and is also a good fallback for platforms where hardware cursor is not supported.
The text was updated successfully, but these errors were encountered: