Displaying 6 results from an estimated 6 matches for "nv_arch_30".
2010 Jul 29
1
[PATCH] Reflow logic to make it easier to follow
...uv_offset, id, dstPitch, &dstBox,
- 0, 0, xb, yb,
- npixels, nlines, src_w, src_h,
- drw_w, drw_h, clipBoxes);
- }
- pPriv->currentBuffer ^= 1;
- } else
- if (action_flags & USE_TEXTURE) {
- int ret = BadImplementation;
- if (pNv->Architecture == NV_ARCH_30) {
- ret = NV30PutTextureImage(pScrn, pPriv->video_mem,
- offset, uv_offset,
- id, dstPitch, &dstBox, 0, 0,
- xb, yb, npixels, nlines,
- src_w, src_h, drw_w, drw_h,
- clipBoxes, ppix, pPriv);
- } else
- if (pNv->Architecture == NV_ARCH_40) {
- ret...
2019 Jan 21
2
[PATCH xf86-video-nouveau 1/2] xv: Avoid shadowed declaration of 'int i' in NVPutImage
int i is accessed outside immediate scope so leave declaration at
the highest common scope level:
1073: int ret, i;
...
// Highest common scope
...
1193: if (newTTSize <= destination_buffer->size) {
...
// Used in this scope
...
1248: } else {
...
// Used in this scope
...
1316: }
2019 Jan 21
0
[PATCH xf86-video-nouveau 2/2] xv: Avoid shadowed declaration of 'int ret' in NVPutImage
...rc/nouveau_xv.c
index 1afe2f1..9d955e0 100644
--- a/src/nouveau_xv.c
+++ b/src/nouveau_xv.c
@@ -1366,7 +1366,7 @@ CPU_copy:
pPriv->currentBuffer ^= 1;
} else
if (action_flags & USE_TEXTURE) {
- int ret = BadImplementation;
+ ret = BadImplementation;
if (pNv->Architecture == NV_ARCH_30) {
ret = NV30PutTextureImage(pScrn, pPriv->video_mem,
--
2.19.1
2015 Sep 29
4
[Bug 92178] New: nouveau framebuffer fails to initialize properly on GeForce 2 Go (NV11M)
https://bugs.freedesktop.org/show_bug.cgi?id=92178
Bug ID: 92178
Summary: nouveau framebuffer fails to initialize properly on
GeForce 2 Go (NV11M)
Product: xorg
Version: unspecified
Hardware: x86 (IA32)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
...VAccelInitNV30TCL(ScrnInfoPtr pScrn)
if (!nv40_fp_map_a8[0])
NV30EXAHackupA8Shaders(pScrn);
-#define NV30TCL_CHIPSET_3X_MASK 0x00000003
-#define NV35TCL_CHIPSET_3X_MASK 0x000001e0
-#define NV34TCL_CHIPSET_3X_MASK 0x00000010
-
chipset = pNv->dev->chipset;
- if ((chipset & 0xf0) != NV_ARCH_30)
+ if ((chipset & 0xf0) == NV_ARCH_30) {
+ chipset &= 0xf;
+ if (NV30TCL_CHIPSET_3X_MASK & (1<<chipset))
+ class = NV30TCL;
+ else if (NV35TCL_CHIPSET_3X_MASK & (1<<chipset))
+ class = NV35TCL;
+ else if (NV34TCL_CHIPSET_3X_MASK & (1<<chipset))
+ clas...
2010 Aug 06
4
nv vpe video decoder
Hello,
I have my work on the nv vpe video decoder in a functional
state. In case you didn't know this decoder accelerates mpeg2
video at the idct/mc level. I have verified that it works on
nv40 hardware. I believe it works on nv30 hardware (and
maybe some earlier hardware), but I cannot verify since I have
none.
I will reply with patches against the kernel, drm, ddx
and mesa for