Mesa (master): i965/fs: Use a bitfield for fs_inst's bool fields.

Matt Turner mattst88 at kemper.freedesktop.org
Sat Feb 22 06:50:00 UTC 2014


Module: Mesa
Branch: master
Commit: 4fbebd6e65d8030131cdd71e273016bd2213ac77
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4fbebd6e65d8030131cdd71e273016bd2213ac77

Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Feb 19 19:49:46 2014 -0800

i965/fs: Use a bitfield for fs_inst's bool fields.

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/brw_fs.h |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 6fcdb12..f2750f9 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -218,7 +218,6 @@ public:
    uint32_t texture_offset; /**< Texture offset bitfield */
    uint32_t offset; /* spill/unspill offset */
 
-   bool saturate;
    uint8_t conditional_mod; /**< BRW_CONDITIONAL_* */
 
    /* Chooses which flag subregister (f0.0 or f0.1) is used for conditional
@@ -231,12 +230,13 @@ public:
    int8_t base_mrf; /**< First MRF in the SEND message, if mlen is nonzero. */
    uint8_t sampler;
    uint8_t target; /**< MRT target. */
-   bool eot;
-   bool header_present;
-   bool shadow_compare;
-   bool force_uncompressed;
-   bool force_sechalf;
-   bool force_writemask_all;
+   bool saturate:1;
+   bool eot:1;
+   bool header_present:1;
+   bool shadow_compare:1;
+   bool force_uncompressed:1;
+   bool force_sechalf:1;
+   bool force_writemask_all:1;
 };
 
 /**




More information about the mesa-commit mailing list