// iddcx.h
NTSTATUS IddCxMonitorSetupHardwareCursor(
[in] IDDCX_MONITOR MonitorObject,
[in] const IDARG_IN_SETUP_HWCURSOR *pInArgs
);
View the official Windows Driver Kit DDI referenceNo description available.
An indirect display driver calls IddCxMonitorSetupHardwareCursor to setup hardware cursor support for the path.
MonitorObject [in]An IDDCX_MONITOR object which is the monitor's OS context handle created by IddCxMonitorCreate.
pInArgs [in]An IDARG_IN_SETUP_HWCURSOR structure containing this function's input arguments.
IddCxMonitorSetupHardwareCursor returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.
By default, software cursor is enabled when a mode is committed on a path. If the driver wants to accelerate the cursor on that path it uses this callback to enable hardware cursor support.
IddCxMonitorQueryHardwareCursor
IddCxMonitorQueryHardwareCursor2