diff options
author | Brian Paul <[email protected]> | 2009-06-30 16:36:11 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-30 17:12:44 -0600 |
commit | 76a5a5dace715aa629ee98a37acb3075a7de153c (patch) | |
tree | 25a2030b1bdd72e4a8e68258d15bc4d97563bf58 /src/mesa/drivers/dri/i965 | |
parent | 0fe19bc91d89dd83b9a7bab28a6009a30e1bc856 (diff) |
i965: use BRW_MAX_GRF, BRW_MAX_MRF
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index 3ee56fe1b6c..b7116d45f53 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -171,9 +171,9 @@ static INLINE struct brw_reg brw_reg( GLuint file, { struct brw_reg reg; if (type == BRW_GENERAL_REGISTER_FILE) - assert(nr < 128); + assert(nr < BRW_MAX_GRF); else if (type == BRW_MESSAGE_REGISTER_FILE) - assert(nr < 9); + assert(nr < BRW_MAX_MRF); else if (type == BRW_ARCHITECTURE_REGISTER_FILE) assert(nr <= BRW_ARF_IP); @@ -538,6 +538,7 @@ static INLINE struct brw_reg brw_mask_reg( GLuint subnr ) static INLINE struct brw_reg brw_message_reg( GLuint nr ) { + assert(nr < BRW_MAX_MRF); return brw_vec8_reg(BRW_MESSAGE_REGISTER_FILE, nr, 0); |