search for: fc6157d

Displaying 1 result from an estimated 1 matches for "fc6157d".

2009 Mar 31
1
(patch) Gallium NV50: honor bypass_vs_clip_and_viewport
...gles didn't show even when disabling depth testing. The following small patch would fix the issue, i.e. the depth buffer is cleared correctly. I just thought I might mention it: diff --git a/src/gallium/drivers/nv50/nv50_state_validate.c b/src/gallium/drivers/nv50/nv50_state_validate.c index fc6157d..c13d3de 100644 --- a/src/gallium/drivers/nv50/nv50_state_validate.c +++ b/src/gallium/drivers/nv50/nv50_state_validate.c @@ -244,7 +244,7 @@ nv50_state_validate(struct nv50_context *nv50) } scissor_uptodate: - if (nv50->dirty & NV50_NEW_VIEWPORT) { + if (nv50->dirty & (NV50_NEW_VIE...