[][src]Enum surfman::SurfaceAccess

pub enum SurfaceAccess {
    GPUOnly,
    GPUCPU,
    GPUCPUWriteCombined,
}

Variants

GPUOnly

The surface data is accessible by the GPU only.

The lock_surface_data() method will return the SurfaceDataInaccessible error when called on this surface.

GPUCPU

The surface data is accessible by the GPU and CPU.

GPUCPUWriteCombined

The surface data is accessible by the GPU and CPU, and the CPU will send surface data over the bus to the GPU using write-combining if available.

Specifically, what this means is that data transfer will be optimized for the following patterns:

  1. Writing, not reading.

  2. Writing sequentially, filling every byte in a range.

This flag has no effect on correctness (at least on x86), but not following the rules above may result in severe performance consequences.

The driver is free to treat this as identical to GPUCPU.

Trait Implementations

impl Clone for SurfaceAccess[src]

impl Copy for SurfaceAccess[src]

impl PartialEq<SurfaceAccess> for SurfaceAccess[src]

impl Debug for SurfaceAccess[src]

impl StructuralPartialEq for SurfaceAccess[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]