Contents

setCursorImage

Set a new image for the hardware cursor.

Declaration

virtual IOReturn setCursorImage(
 void *cursorImage );

Parameters

  • cursorImage:

    Opaque cursor description. This should be passed to the convertCursorImage() method to convert to a format specific to the hardware.

Return Value

An IOReturn code.

Overview

IOFramebuffer subclasses may implement hardware cursor functionality, if so they should implement this method to change the hardware cursor image. The image should be passed to the convertCursorImage() method with each type of cursor format the hardware supports until success, if all fail the hardware cursor should be hidden and kIOReturnUnsupported returned.

See Also

Miscellaneous