diff options
author | Kenneth Graunke <[email protected]> | 2014-06-07 02:12:46 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-06-10 16:38:26 -0700 |
commit | b003fc265fc672b35d15ce7c2d05e8b9c81c4ee9 (patch) | |
tree | a0a8be3dd7e4a296de7457e6f9cd0b5d748b9781 /src/mesa/drivers/dri/i965/brw_eu_util.c | |
parent | de65ec2fdeb3a22d408db24535d738b39cc3402c (diff) |
i965: Rename brw_math to gen4_math.
Usually, I try to use "brw" for functions that apply to all generations,
and "gen4" for dead end/legacy code that is only used on Gen4-5.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu_util.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_util.c b/src/mesa/drivers/dri/i965/brw_eu_util.c index 747c2d7d2e9..0950fad99fd 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_util.c +++ b/src/mesa/drivers/dri/i965/brw_eu_util.c @@ -39,7 +39,7 @@ void brw_math_invert( struct brw_compile *p, struct brw_reg dst, struct brw_reg src) { - brw_math( p, + gen4_math(p, dst, BRW_MATH_FUNCTION_INV, 0, |