Re: [Mesa-dev] [PATCH] i965: Delete #define's and use local variables inside function

2013-11-11 Thread Chad Versace
On 11/07/2013 04:51 PM, Anuj Phogat wrote: X_f, Y_f, Xp_f, Yp_f variables are used just inside translate_dst_to_src().So, they can be defined just as local variables. Signed-off-by: Anuj Phogat Reviewed-by: Chad Versace ___ mesa-dev mailing list m

[Mesa-dev] [PATCH] i965: Delete #define's and use local variables inside function

2013-11-07 Thread Anuj Phogat
X_f, Y_f, Xp_f, Yp_f variables are used just inside translate_dst_to_src().So, they can be defined just as local variables. Signed-off-by: Anuj Phogat --- I think I missed this change during the review of my single sample scaled blit patches. src/mesa/drivers/dri/i965/brw_blorp_blit.cpp | 13 ++