Displaying 1 result from an estimated 1 matches for "dfce193".
Did you mean:
dfc51c3
2014 Feb 13
0
[PATCH] nv50: mark scissors/viewports dirty on context switch
...can make any necessary follow-up fixes, should review comments
arrive.
src/gallium/drivers/nouveau/nv50/nv50_state_validate.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c b/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
index dfce193..f953422 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
@@ -366,6 +366,8 @@ nv50_switch_pipe_context(struct nv50_context *ctx_to)
ctx_to->state = ctx_from->state;
ctx_to->dirty = ~0;
+ ctx_to-&...