search for: viewport_clip_horiz

Displaying 3 results from an estimated 3 matches for "viewport_clip_horiz".

2014 Aug 10
3
[PATCH 1/4] exa/nv10: use same clip settings as mesa driver
...rc/nv10_exa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nv10_exa.c b/src/nv10_exa.c index cb9eb7c..df2f561 100644 --- a/src/nv10_exa.c +++ b/src/nv10_exa.c @@ -686,9 +686,9 @@ NVAccelInitNV10TCL(ScrnInfoPtr pScrn) PUSH_DATA (push, 0); BEGIN_NV04(push, NV10_3D(VIEWPORT_CLIP_HORIZ(0)), 1); - PUSH_DATA (push, 0x7ff << 16 | 0x800800); + PUSH_DATA (push, 0x7ff << 16 | 0x800); BEGIN_NV04(push, NV10_3D(VIEWPORT_CLIP_VERT(0)), 1); - PUSH_DATA (push, 0x7ff << 16 | 0x800800); + PUSH_DATA (push, 0x7ff << 16 | 0x800); for (i = 1; i < 8; i++) { BEGIN...
2015 Mar 21
0
[PATCH] use defined method names where available
...0); BEGIN_NV04(push, NV30_3D(VIEWPORT_TX_ORIGIN), 1); PUSH_DATA (push, 0); - BEGIN_NV04(push, SUBC_3D(0x0a00), 2); + BEGIN_NV04(push, NV30_3D(VIEWPORT_HORIZ), 2); PUSH_DATA (push, (w<<16) | 0); PUSH_DATA (push, (h<<16) | 0); BEGIN_NV04(push, NV30_3D(VIEWPORT_CLIP_HORIZ(0)), 2); diff --git a/src/nv40_exa.c b/src/nv40_exa.c index c9e99e0..8a1e2b5 100644 --- a/src/nv40_exa.c +++ b/src/nv40_exa.c @@ -633,13 +633,13 @@ NVAccelInitNV40TCL(ScrnInfoPtr pScrn) PUSH_DATA (push, 0x0020ffff); BEGIN_NV04(push, SUBC_3D(0x1d64), 1); PUSH_DATA (push, 0x00d30000); - BEGIN_N...
2010 Feb 26
5
[PATCH 0/5] renouveau: nv30/nv40 unification
This patchset applies some minor fixes to renouveau.xml and then unifies the nv30 and nv40 register definitions. nv30 and nv40 are very similar and have the same offsets for the registers they share. The major differences are: 1. Texture setup is different due to full NPOT support on nv40 2. More advanced blending/render targets on nv40 3. NV30 has fixed function registers, which NV40 lacks The