On Fri, 2019-01-11 at 15:01 +0000, Emil Velikov wrote:

> > @@ -460,6 +464,14 @@ driGetConfigAttribIndex(const __DRIconfig *config,
> >     else
> >         *value = 0;
> >     break;
> > +    case __DRI_ATTRIB_RED_MASK_HI:
> > +    case __DRI_ATTRIB_GREEN_MASK_HI:
> > +    case __DRI_ATTRIB_BLUE_MASK_HI:
> > +    case __DRI_ATTRIB_ALPHA_MASK_HI:
> > +        /* upper 32 bits of 64 bit fields */
> > +        *value = *(unsigned int *)
> > +            ((char *) &config->modes + attribMap[index].offset + 4);
> 
> Is the "+ 4" going to work on big endian systems?

No.

I think I'd prefer to just expand config attribute values to 64-bit
across the board internally, rather than have paired 32-bit attributes
like this.

- ajax
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to