Lines Matching defs:uchar3
715 struct uchar3 { uint8_t x; uint8_t y; uint8_t z; uint8_t pad; };
717 "__kernel void main_test(__global uchar3 *inout)\n\
724 auto inout = ShaderArg<struct uchar3>({ { 8, 8, 8 }, { 16, 16, 16 }, { 64, 64, 64 }, { 255, 255, 255 } },
726 const struct uchar3 expected[] = {
742 struct uchar3 { uint8_t x; uint8_t y; uint8_t z; uint8_t pad; };
744 "__kernel void main_test(__global uchar3 *out, __constant uchar3 *in)\n\
751 auto in = ShaderArg<struct uchar3>({ { 8, 8, 8 }, { 16, 16, 16 }, { 64, 64, 64 }, { 255, 255, 255 } },
753 auto out = ShaderArg<struct uchar3>(std::vector<struct uchar3>(4, { 0xff, 0xff, 0xff }),
755 const struct uchar3 expected[] = {