Enum ocl::builders::BufferCmdDataShape[][src]

pub enum BufferCmdDataShape {
    Lin {
        offset: usize,
    },
    Rect {
        src_origin: [usize; 3],
        dst_origin: [usize; 3],
        region: [usize; 3],
        src_row_pitch_bytes: usize,
        src_slc_pitch_bytes: usize,
        dst_row_pitch_bytes: usize,
        dst_slc_pitch_bytes: usize,
    },
}

The 'shape' of the data to be processed, whether one or multi-dimensional.

Should really be called dimensionality or something.

Variants

Fields of Lin

Fields of Rect

Auto Trait Implementations