summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_packed_float.c
Commit message (Collapse)AuthorAgeFilesLines
* i965: avoid anonymous struct in float <-> VF conversionsJonathan Gray2014-12-011-8/+8
| | | | | | | | | | | Anonymous structures are only supported with newer versions of GCC. They will not work with GCC 4.2.1 used by OpenBSD or GCC 4.4.7 shipped with RHEL6 going by a commit to fix a similiar problem in radeonsi earlier in the year (74388dd24bc7fdb9e62ec18096163f5426e03fbf). Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
* i965: Add functions to convert float <-> VF.Matt Turner2014-11-251-0/+75
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>