Displaying 6 results from an estimated 6 matches for "pmpix".
Did you mean:
pdpix
2012 Apr 20
3
[Bug 48954] New: nv25 PGRAPH error and X freeze
https://bugs.freedesktop.org/show_bug.cgi?id=48954
Bug #: 48954
Summary: nv25 PGRAPH error and X freeze
Classification: Unclassified
Product: xorg
Version: git
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2015 Mar 14
1
[PATCH ddx] Add support for VRAM-less devices to the ddx
...pixmap_bo(pspix),
- NOUVEAU_BO_VRAM | NOUVEAU_BO_RD);
- PUSH_REFN (push, dst, NOUVEAU_BO_VRAM | NOUVEAU_BO_WR);
+ NOUVEAU_BO_APER | NOUVEAU_BO_RD);
+ PUSH_REFN (push, dst, NOUVEAU_BO_APER | NOUVEAU_BO_WR);
if (pmpict && pmpict->pDrawable)
PUSH_REFN (push, nouveau_pixmap_bo(pmpix),
- NOUVEAU_BO_VRAM | NOUVEAU_BO_RD);
+ NOUVEAU_BO_APER | NOUVEAU_BO_RD);
nouveau_pushbuf_bufctx(push, pNv->bufctx);
if (nouveau_pushbuf_validate(push)) {
diff --git a/src/nvc0_xv.c b/src/nvc0_xv.c
index d1d8f18..31e2309 100644
--- a/src/nvc0_xv.c
+++ b/src/nvc0_xv.c
@@ -69,9 +69...
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
...10_pict_op[pNv->alu];
+ int src_factor = op->src;
+ int dst_factor = op->dst;
if (src_factor == SF(ONE_MINUS_DST_ALPHA) &&
!PICT_FORMAT_A(pNv->pdpict->format))
@@ -644,280 +567,140 @@ NV10StateCompositeReemit(struct nouveau_channel *chan)
pNv->pspix, pNv->pmpix, pNv->pdpix);
}
-Bool NV10EXAPrepareComposite(int op,
- PicturePtr pSrcPicture,
- PicturePtr pMaskPicture,
- PicturePtr pDstPicture,
- PixmapPtr pSrc,
- PixmapPtr pMask,
- PixmapPtr pDst)
+Bool
+NV10EXAPrepareComposite(int op,
+ PicturePtr pict_s...
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
...teTexture(pmPict, pdPict, op))
NOUVEAU_FALLBACK("mask picture\n");
@@ -462,11 +418,11 @@ NV30EXAStateCompositeReemit(struct nouveau_channel *chan)
Bool
NV30EXAPrepareComposite(int op, PicturePtr psPict,
- PicturePtr pmPict,
- PicturePtr pdPict,
- PixmapPtr psPix,
- PixmapPtr pmPix,
- PixmapPtr pdPix)
+ PicturePtr pmPict,
+ PicturePtr pdPict,
+ PixmapPtr psPix,
+ PixmapPtr pmPix,
+ PixmapPtr pdPix)
{
ScrnInfoPtr pScrn = xf86Screens[psPix->drawable.pScreen->myNum];
NVPtr pNv = NVPTR(pScrn);
@@ -485,26 +441,12 @@ NV30EXAPrepareComposite(int op, Pi...
2010 Jul 27
0
NV50 inifinite loop
...ocess and made it freeze again. Xorg is at 100% CPU load, I break the process inside gdb using strg+c.
bt full:
#0 NV50EXAPrepareComposite (op=<value optimized out>, pspict=<value optimized out>, pmpict=<value optimized out>, pdpict=<value optimized out>, pspix=0x2057530, pmpix=<value optimized out>, pdpix=0x21e4b20)
at ../../src/nv50_exa.c:840
pNv = 0x1c8c690
chan = 0x1c95d80
eng2d = 0x1c825d0
tesla = 0x1c8bf10
#1 0x00007f681b209495 in exaTryDriverComposite (op=128 '\200', pSrc=0x2068830, pMask=0x0, pDst=0x2068a20, xSrc=...
2013 Jul 22
0
[RFC PATCH] Support running nested in a Mir compositor
...c.h"
+#ifdef XMIR
+#include "xmir.h"
+#include "xf86Priv.h"
+#else
+typedef struct xmir_screen xmir_screen;
+#define xorgMir 0
+#endif
+
#if XF86_CRTC_VERSION >= 5
#define NOUVEAU_PIXMAP_SHARING 1
#endif
@@ -112,6 +120,8 @@ typedef struct _NVRec {
PixmapPtr pspix, pmpix, pdpix;
PicturePtr pspict, pmpict;
Pixel fg_colour;
+
+ xmir_screen *xmir;
} NVRec;
#define NVPTR(p) ((NVPtr)((p)->driverPrivate))
--
1.8.3.2