pub struct ContextBuilder<'a, T: ContextCurrentState> {
    pub gl_attr: GlAttributes<&'a Context<T>>,
    pub pf_reqs: PixelFormatRequirements,
}
Expand description

An object that allows you to build Contexts, RawContext<T>s and WindowedContext<T>s.

One notable limitation of the Wayland backend when it comes to shared Contexts is that both contexts must use the same events loop.

Fields

gl_attr: GlAttributes<&'a Context<T>>

The attributes to use to create the context.

pf_reqs: PixelFormatRequirements

The pixel format requirements

Implementations

Builds the given GL context.

When on a unix operating system, prefer build_surfaceless(). If both build_surfaceless() and build_headless() fail, try using a hidden window, or build_osmesa(). Please note that if you choose to use a hidden window, you must still handle the events it generates on the events loop.

Errors can occur in two scenarios:

  • If the window could not be created (via permission denied, incompatible system, out of memory, etc.). This should be very rare.

  • If the OpenGL Context could not be created. This generally happens because the underlying platform doesn’t support a requested feature.

Builds the given window along with the associated GL context, returning the pair as a WindowedContext<T>.

Errors can occur in two scenarios:

  • If the window could not be created (via permission denied, incompatible system, out of memory, etc.). This should be very rare.
  • If the OpenGL Context could not be created. This generally happens because the underlying platform doesn’t support a requested feature.

Initializes a new ContextBuilder with default values.

Sets how the backend should choose the OpenGL API and version.

Sets the desired OpenGL Context profile.

Sets the debug flag for the OpenGL Context.

The default value for this flag is cfg!(debug_assertions), which means that it’s enabled when you run cargo build and disabled when you run cargo build --release.

Sets the robustness of the OpenGL Context. See the docs of Robustness.

Requests that the window has vsync enabled.

By default, vsync is not enabled.

Share the display lists with the given Context.

Sets the multisampling level to request. A value of 0 indicates that multisampling must not be enabled.

Panic

Will panic if samples is not a power of two.

Sets the number of bits in the depth buffer.

Sets the number of bits in the stencil buffer.

Sets the number of bits in the color buffer.

Request the backend to be stereoscopic.

Sets whether sRGB should be enabled on the window.

The default value is true.

Sets whether double buffering should be enabled.

The default value is None.

Platform-specific

This option will be taken into account on the following platforms:

  • MacOS
  • Unix operating systems using GLX with X
  • Windows using WGL

Sets whether hardware acceleration is required.

The default value is Some(true)

Platform-specific

This option will be taken into account on the following platforms:

  • MacOS
  • Unix operating systems using EGL with either X or Wayland
  • Windows using EGL or WGL
  • Android using EGL

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
Builds an OsMesa context. Read more
Builds an EGL-surfaceless context. Read more
Creates a raw context on the provided window. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.