Cue bits are not supported in the OpenCL language. What is the reason for not supporting them? Unlike other missing objects (recursion, function pointers, ...), where there is an obvious reason not to support them, I do not see them for bitfields. I'm sure this is not oversight on behalf of commits, but what is the reason?
(I store some bits packed in ints, and the code will be nicer to read with them. I understand bit fields as good syntax to avoid shifting bits and masking back and forth, which in any case translates to assembly.)
source share