Trait glitter::context::texture_context::TextureBinding [] [src]

pub trait TextureBinding {
    type TextureType: TextureType;
    fn target(&self) -> TextureBindingTarget;
}

Represents a texture that has been bound to a texture unit.

Associated Types

The type of texture that this binding represents.

Required Methods

The OpenGL texture target of this binding.

Implementors