Re: [Mesa-dev] [PATCH] ra: Add ra_set_node_reg()

2011-04-24 Thread Tom Stellard
On Sun, Apr 24, 2011 at 02:00:40PM -0700, Eric Anholt wrote: > On Tue, 19 Apr 2011 23:09:46 -0700, Tom Stellard wrote: > > This function makes it possible to include input / payload registers in > > the interference graph. > > [...] > > > +/** > > + * This function allows a user to manually assi

Re: [Mesa-dev] [PATCH] ra: Add ra_set_node_reg()

2011-04-24 Thread Eric Anholt
On Tue, 19 Apr 2011 23:09:46 -0700, Tom Stellard wrote: > This function makes it possible to include input / payload registers in > the interference graph. [...] > +/** > + * This function allows a user to manually assign a register to a node. This > + * is useful for nodes that belong to regis

Re: [Mesa-dev] [PATCH] st/mesa: fix regression since a22aba4eae9b29db731487bce90e8292f7e82c72

2011-04-24 Thread Brian Paul
On Sun, Apr 24, 2011 at 1:45 AM, Dave Airlie wrote: > From: Dave Airlie > > "st/mesa: check image size before copy_image_data_to_texture()" caused > a regression in piglit fbo-generatemipmap-formats test on all gallium drivers. Sorry about that. I ran the piglit texture tests but not the fbo te

[Mesa-dev] gallium: add PIPE_CAP_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION

2011-04-24 Thread Christoph Bumiller
In my opinion this is preferable to special-casing quads/polygons and needlessly changing state for them in the draw calls. >From 35527e6c6fa85aed0002037a2be97f9e0318447c Mon Sep 17 00:00:00 2001 From: Christoph Bumiller Date: Sun, 24 Apr 2011 17:41:44 +0200 Subject: [PATCH] gallium: add PIPE_CAP_

[Mesa-dev] [PATCH] st/mesa: fix regression since a22aba4eae9b29db731487bce90e8292f7e82c72

2011-04-24 Thread Dave Airlie
From: Dave Airlie "st/mesa: check image size before copy_image_data_to_texture()" caused a regression in piglit fbo-generatemipmap-formats test on all gallium drivers. Level 0 for NPOT textures will not match minified values, so don't do this check for level 0. Signed-off-by: Dave Airlie ---