Mesa (master): i965: Reduce predicate field of backend_instruction to uint8_t.

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


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

Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Feb 19 17:21:16 2014 -0800

i965: Reduce predicate field of backend_instruction to uint8_t.

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

---

 src/mesa/drivers/dri/i965/brw_shader.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_shader.h b/src/mesa/drivers/dri/i965/brw_shader.h
index c76f33b..4c79861 100644
--- a/src/mesa/drivers/dri/i965/brw_shader.h
+++ b/src/mesa/drivers/dri/i965/brw_shader.h
@@ -56,7 +56,7 @@ public:
 
    enum opcode opcode; /* BRW_OPCODE_* or FS_OPCODE_* */
 
-   uint32_t predicate;
+   uint8_t predicate;
    bool predicate_inverse;
 };
 




More information about the mesa-commit mailing list