[Nouveau] [PATCH 2/4] nv50: fix thinko in nv50_vbo_validate

2009-08-15 Thread Maarten Maathuis
--- src/gallium/drivers/nv50/nv50_vbo.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c index 17283f3..018354a 100644 --- a/src/gallium/drivers/nv50/nv50_vbo.c +++

[Nouveau] [PATCH 3/4] gallium: do not rely on the automatic values of an enum for bitmask purposes

2009-08-15 Thread Maarten Maathuis
- PIPE_TRANSFER_READ ended up being defined as 0, which is obviously fail. --- src/gallium/include/pipe/p_defines.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index bc4bc70..9d47584

[Nouveau] [PATCH 4/4] nv50: borrow some flushing code from the ddx

2009-08-15 Thread Maarten Maathuis
- This fixes neverball corruption. - I'm unsure what we're actually flushing here. --- src/gallium/drivers/nv50/nv50_context.c | 12 ++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c