Enum ocl::builders::ImageCmdKind [] [src]

pub enum ImageCmdKind<'c, T: 'c> {
    Unspecified,
    Read {
        data: &'c mut [T],
    },
    Write {
        data: &'c [T],
    },
    Map,
    Fill {
        color: T,
    },
    Copy {
        dst_image: &'c MemCore,
        dst_origin: [usize; 3],
    },
    CopyToBuffer {
        buffer: &'c MemCore,
        dst_origin: usize,
    },
    GLAcquire,
    GLRelease,
}

The type of operation to be performed by a command.

Variants

Fields of Read

Fields of Write

Fields of Fill

Fields of Copy

Fields of CopyToBuffer

Trait Implementations

impl<'c, T: Debug + 'c> Debug for ImageCmdKind<'c, T>
[src]

Formats the value using the given formatter.