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

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

The type of operation to be performed by a command.

Variants

Fields

Fields

Fields

Fields

Fields

Trait Implementations

impl<'b, E: Debug + 'b> Debug for ImageCmdKind<'b, E>
[src]

Formats the value using the given formatter.