search for: nvfx_context

Displaying 2 results from an estimated 2 matches for "nvfx_context".

Did you mean: nv50_context
2012 Jan 10
5
[PATCH 0/4] nvfx: rework render temps code and fixes
...lowing days, so please review and apply as time permits. Thanks, Lucas Lucas Stach (4): nvfx: say no to stream output caps nvfx: rework state_fb code to get rid of render temps nvfx: drop render temporaries code nvfx: random cleanups of the state validation code src/gallium/drivers/nvfx/nvfx_context.h | 2 +- src/gallium/drivers/nvfx/nvfx_fragtex.c | 4 - src/gallium/drivers/nvfx/nvfx_miptree.c | 18 +--- src/gallium/drivers/nvfx/nvfx_resource.h | 30 +----- src/gallium/drivers/nvfx/nvfx_screen.c | 6 +- src/gallium/drivers/nvfx/nvfx_state_emit.c | 94 +++++-------...
2012 Jan 24
1
[PATCH] nvfx: fix nv3x fallout from state validation changes
...1 deletions(-) diff --git a/src/gallium/drivers/nvfx/nvfx_state_emit.c b/src/gallium/drivers/nvfx/nvfx_state_emit.c index a959015..60ed2d0 100644 --- a/src/gallium/drivers/nvfx/nvfx_state_emit.c +++ b/src/gallium/drivers/nvfx/nvfx_state_emit.c @@ -244,6 +244,9 @@ nvfx_state_validate_common(struct nvfx_context *nvfx) } if(dirty & NVFX_NEW_SAMPLER) { + /* XXX: we take the big hammer here, I have no idea why this is needed + to make this work properly */ + nvfx->dirty &= ~NVFX_NEW_SAMPLER; nvfx_fragtex_validate(nvfx); // TODO: only set this if really necessary @@ -303,7 +306,...