Struct dunge::Context

source ·
pub struct Context(/* private fields */);
Expand description

The main dunge context.

It can be created via the context function or the window function if you need a window and the winit feature is enabled.

Implementations§

source§

impl Context

source

pub fn make_shader<M, A>(&self, module: M) -> Shader<M::Vertex, M::Instance>
where M: IntoModule<A>,

source

pub fn make_binder<'a, V, I>(&'a self, shader: &'a Shader<V, I>) -> Binder<'a>

source

pub fn make_uniform<U>(&self, val: U) -> Uniform<U::Value>
where U: IntoValue,

source

pub fn make_layer<V, I, O>(&self, shader: &Shader<V, I>, opts: O) -> Layer<V, I>
where O: Into<Config>,

source

pub fn make_mesh<V>(&self, data: &MeshData<'_, V>) -> Mesh<V>
where V: Vertex,

source

pub fn make_row<U>(&self, data: &[U]) -> Row<U>
where U: Value,

source

pub fn make_texture<M>(&self, data: M) -> M::Out
where M: Make,

source

pub fn make_sampler(&self, filter: Filter) -> Sampler

source

pub fn make_copy_buffer(&self, size: (u32, u32)) -> CopyBuffer

source

pub async fn map_view<'a, S, R, F>( &self, view: CopyBufferView<'a>, tx: S, rx: R ) -> Mapped<'a>
where S: FnOnce(MapResult) + WasmNotSend + 'static, R: FnOnce() -> F, F: IntoFuture<Output = MapResult>,

source

pub fn update_group<G>( &self, uni: &mut UniqueBinding, handler: &GroupHandler<G::Projection>, group: &G ) -> Result<(), ForeignShader>
where G: Visit,

source

pub fn draw_to<T, D>(&self, target: &T, draw: D)
where T: AsTarget, D: Draw,

Trait Implementations§

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Downcast<T> for T

source§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,