Kenneth Graunke writes:
> The simulator gets very angry about our i2b code:
>
> cmp.ne(16) g3<1>D g2<0,1,0>D 0F
>
> We can't mix integer DWord and float types. The only reason to use 0F
> here was to share code with f2b. Split it and use 0D instead.
My understanding is that
On 11 January 2013 14:19, Kenneth Graunke wrote:
> The simulator gets very angry about our i2b code:
>
> cmp.ne(16) g3<1>D g2<0,1,0>D 0F
>
> We can't mix integer DWord and float types. The only reason to use 0F
> here was to share code with f2b. Split it and use 0D instead.
>
The simulator gets very angry about our i2b code:
cmp.ne(16) g3<1>D g2<0,1,0>D 0F
We can't mix integer DWord and float types. The only reason to use 0F
here was to share code with f2b. Split it and use 0D instead.
---
src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 4 +++-
1