Struct glfw::Cursor [−][src]
pub struct Cursor { /* fields omitted */ }
Expand description
Represents a window cursor that can be used to display any of the standard cursors or load a custom cursor from an image.
Note that the cursor object has a lifetime and will not display correctly after it has been dropped.
Implementations
Create a new cursor using glfwCreateStandardCursor
Creates a new cursor from the PixelImage
provided via glfwCreateCursor
Note that the cursor image will be the same size as the image provided, so scaling it beforehand may be required.
The cursor hotspot is specified in pixels, relative to the upper-left corner of the cursor image. Like all other coordinate systems in GLFW, the X-axis points to the right and the Y-axis points down.