Struct wayland_client::egl::WlEglSurface [] [src]

pub struct WlEglSurface { /* fields omitted */ }

EGL surface

This object is a simple wrapper around a WlSurface to add the EGL capabilities. Just use the ptr method once this object is created to get the window pointer your OpenGL library is needing to initialize the EGL context (you'll most likely need the display ptr as well, that you can get via the ptr method of the Proxy trait on the WlDisplay object).

Methods

impl WlEglSurface
[src]

[src]

Create an EGL surface from a wayland surface

[src]

Create an EGL surface from a raw pointer to a wayland surface

This function is unsafe because surface must be a valid wl_surface pointer

[src]

Fetch current size of the EGL surface

[src]

Resize the EGL surface

The two first arguments (width, height) are the new size of the surface, the two others (dx, dy) represent the displacement of the top-left corner of the surface. It allows you to control the direction of the resizing if necessary.

[src]

Raw pointer to the EGL surface

You'll need this pointer to initialize the EGL context in your favourite OpenGL lib.

Trait Implementations

impl Send for WlEglSurface
[src]

impl Sync for WlEglSurface
[src]

impl Drop for WlEglSurface
[src]

[src]

Executes the destructor for this type. Read more