Struct glfw::Cursor [] [src]

pub struct Cursor { /* fields omitted */ }

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.

Methods

impl Cursor
[src]

[src]

Create a new cursor using glfwCreateStandardCursor

[src]

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.

Trait Implementations

impl Drop for Cursor
[src]

[src]

Executes the destructor for this type. Read more