Re: [Mesa-dev] [PATCH 3/5] gallium: add initial pure integer support (v2)

2011-10-07 Thread Marek Olšák
On Fri, Oct 7, 2011 at 10:48 PM, Jose Fonseca wrote: > Looks good overall. Comments inline. > > - Original Message - >> From: Dave Airlie >> >> This add support for unsigned/signed integer types via adding a >> 'pure' bit >> in the format description table. It adds 4 new u_format get/put

Re: [Mesa-dev] [PATCH 3/5] gallium: add initial pure integer support (v2)

2011-10-07 Thread Jose Fonseca
Looks good overall. Comments inline. - Original Message - > From: Dave Airlie > > This add support for unsigned/signed integer types via adding a > 'pure' bit > in the format description table. It adds 4 new u_format get/put > hooks, > for get/put uint and get/put sint so that accessors

[Mesa-dev] [PATCH 3/5] gallium: add initial pure integer support (v2)

2011-10-07 Thread Dave Airlie
From: Dave Airlie This add support for unsigned/signed integer types via adding a 'pure' bit in the format description table. It adds 4 new u_format get/put hooks, for get/put uint and get/put sint so that accessors can get native access to the integer bits. This is used to avoid precision loss v