pub struct Cursor { /* private fields */ }
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§
source§impl Cursor
impl Cursor
sourcepub fn standard(cursor: StandardCursor) -> Cursor
pub fn standard(cursor: StandardCursor) -> Cursor
Create a new cursor using glfwCreateStandardCursor
sourcepub fn create_from_pixels(
image: PixelImage,
x_hotspot: u32,
y_hotspot: u32
) -> Cursor
pub fn create_from_pixels( image: PixelImage, x_hotspot: u32, y_hotspot: u32 ) -> Cursor
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.