search for: ppriv

Displaying 16 results from an estimated 16 matches for "ppriv".

Did you mean: priv
2010 Jul 29
1
[PATCH] Reflow logic to make it easier to follow
...------------- 1 files changed, 55 insertions(+), 59 deletions(-) diff --git a/src/nouveau_xv.c b/src/nouveau_xv.c index 4437aa6..eb43207 100644 --- a/src/nouveau_xv.c +++ b/src/nouveau_xv.c @@ -920,7 +920,6 @@ NVPutImage(ScrnInfoPtr pScrn, short src_x, short src_y, short drw_x, { NVPortPrivPtr pPriv = (NVPortPrivPtr)data; NVPtr pNv = NVPTR(pScrn); - PixmapPtr ppix; /* source box */ INT32 xa = 0, xb = 0, ya = 0, yb = 0; /* size to allocate in VRAM and in GART respectively */ @@ -1249,11 +1248,29 @@ CPU_copy: if (pPriv->currentHostBuffer != NO_PRIV_HOST_BUFFER_AVAILABLE) pPriv-&g...
2007 May 30
0
[PATCH] added comments
...@@ -74,7 +83,7 @@ static XF86VideoEncodingRec DummyEncoding = { 0, "XV_IMAGE", - 2046, 2046, + IMAGE_MAX_W, IMAGE_MAX_H, {1, 1} }; @@ -140,6 +149,13 @@ static XF86ImageRec NVImages[NUM_IMAGES_ALL] = XVIMAGE_RGB }; +/** + * NVSetPortDefaults + * set attributes of port "pPriv" to complied-in (except for colorKey) defaults + * + * @param pScrnInfo screen to get the default colorKey from + * @param pPriv port to reset to defaults + */ static void NVSetPortDefaults (ScrnInfoPtr pScrnInfo, NVPortPrivPtr pPriv) { @@ -155,9 +171,12 @@ NVSetPortDefaults (ScrnInfoPtr...
2020 Apr 30
2
[PATCH] drm/nouveau/dispnv04: Remove dead code
...alc_state_ext(struct drm_crtc *crtc, struct drm_display_mod /* Except for rare conditions I2C is enabled on the primary crtc */ if (nv_crtc->index == 0) regp->crtc_eng_ctrl |= NV_CRTC_FSEL_I2C; -#if 0 - /* Set overlay to desired crtc. */ - if (dev->overlayAdaptor) { - NVPortPrivPtr pPriv = GET_OVERLAY_PRIVATE(dev); - if (pPriv->overlayCRTC == nv_crtc->index) - regp->crtc_eng_ctrl |= NV_CRTC_FSEL_OVERLAY; - } -#endif /* ADDRESS_SPACE_PNVM is the same as setting HCUR_ASI */ regp->cursor_cfg = NV_PCRTC_CURSOR_CONFIG_CUR_LINES_64 | -- 1.9.1
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: }
2017 Apr 18
3
[PATCH xserver] Make PixmapDirtyUpdateRec::src a DrawablePtr
...st2, int x, int y, int dst_x, int dst_y, Rotation rotation) { - ScreenPtr pScreen = src->drawable.pScreen; + ScreenPtr pScreen = src->pScreen; modesettingPtr ms = modesettingPTR(xf86ScreenToScrn(pScreen)); msPixmapPrivPtr ppriv1 = msGetPixmapPriv(&ms->drmmode, slave_dst1), @@ -1264,7 +1264,7 @@ msPresentSharedPixmap(PixmapPtr slave_dst) RegionPtr region = DamageRegion(ppriv->dirty->damage); if (RegionNotEmpty(region)) { - redisplay_dirty(ppriv->slave_src->drawable.pScreen, pp...
2012 Jul 27
1
[PATCH] nvc0: Add and enable vblank support
...BEGIN_NVC0(push, NVC0_3D(COND_MODE), 1); diff --git a/src/nvc0_xv.c b/src/nvc0_xv.c index 3b6d01f..86b7948 100644 --- a/src/nvc0_xv.c +++ b/src/nvc0_xv.c @@ -221,9 +221,8 @@ nvc0_xv_image_put(ScrnInfoPtr pScrn, PUSH_DATAf(push, 1.0 / width); PUSH_DATAf(push, 1.0 / height); - if (0 && pPriv->SyncToVBlank) { - NV50SyncToVBlank(ppix, dstBox); - } + if (pPriv->SyncToVBlank) + NVC0SyncToVBlank(ppix, dstBox); /* These are fixed point values in the 16.16 format. */ X1 = (float)(x1>>16)+(float)(x1&0xFFFF)/(float)0x10000;
2019 Jan 21
0
[PATCH xf86-video-nouveau 2/2] xv: Avoid shadowed declaration of 'int ret' in NVPutImage
...com> Signed-off-by: Rhys Kidd <rhyskidd at gmail.com> --- src/nouveau_xv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau_xv.c b/src/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
2020 Apr 30
0
[PATCH] drm/nouveau/dispnv04: Remove dead code
...r rare conditions I2C is enabled on the primary crtc */ > if (nv_crtc->index == 0) > regp->crtc_eng_ctrl |= NV_CRTC_FSEL_I2C; > -#if 0 > - /* Set overlay to desired crtc. */ > - if (dev->overlayAdaptor) { > - NVPortPrivPtr pPriv = GET_OVERLAY_PRIVATE(dev); > - if (pPriv->overlayCRTC == nv_crtc->index) > - regp->crtc_eng_ctrl |= NV_CRTC_FSEL_OVERLAY; > - } > -#endif > > /* ADDRESS_SPACE_PNVM is the same as setting HCUR_ASI */ > regp->...
2020 May 01
1
[PATCH] drm/nouveau/dispnv04: Remove dead code
...ed on the primary crtc */ > > if (nv_crtc->index == 0) > > regp->crtc_eng_ctrl |= NV_CRTC_FSEL_I2C; > > -#if 0 > > - /* Set overlay to desired crtc. */ > > - if (dev->overlayAdaptor) { > > - NVPortPrivPtr pPriv = GET_OVERLAY_PRIVATE(dev); > > - if (pPriv->overlayCRTC == nv_crtc->index) > > - regp->crtc_eng_ctrl |= NV_CRTC_FSEL_OVERLAY; > > - } > > -#endif > > > > /* ADDRESS_SPACE_PNVM is the same as setting HCUR...
2007 Oct 16
22
[Bug 12825] New: TvTime shows only the upper left corner (~ 1280x1024) in Randr1.2
http://bugs.freedesktop.org/show_bug.cgi?id=12825 Summary: TvTime shows only the upper left corner (~ 1280x1024) in Randr1.2 Product: xorg Version: unspecified Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2009 Jan 31
1
[Bug 19860] New: xv texture adaptor kills X
...src_offset=0, src_offset2=691200, id=<value optimized out>, src_pitch=<value optimized out>, dstBox=0x7fffd2c324c0, x1=0, y1=0, x2=62914560, y2=47185920, width=960, height=720, src_w=480, src_h=360, drw_w=960, drw_h=720, clipBoxes=0x7fffd2c325c0, ppix=0x1c412f0, pPriv=0x8213b8) at nv40_xv_tex.c:356 #6 0x00002b79db187d64 in NVPutImage (pScrn=0x7fb940, src_x=0, src_y=0, drw_x=32, drw_y=51, src_w=960, src_h=720, drw_w=960, drw_h=720, id=842094169, buf=0x2b79e6015000 "", width=960, height=720, Sync=0, clipBoxes=0x7fffd2c325c0, data=0x8213b8...
2006 Oct 31
0
PSARC/2002/762 Layered Trusted Solaris
...c/cmd/praudit/Makefile update: usr/src/cmd/praudit/token.c update: usr/src/cmd/praudit/toktable.c update: usr/src/cmd/praudit/toktable.h update: usr/src/cmd/print/gateway/adaptor.c update: usr/src/cmd/print/gateway/adaptor.h update: usr/src/cmd/print/gateway/main.c update: usr/src/cmd/ptools/ppriv/ppriv.c update: usr/src/cmd/rpcbind/bind.xml update: usr/src/cmd/rpcbind/rpcbind.c update: usr/src/cmd/smserverd/myaudit.c update: usr/src/cmd/svc/shell/smf_include.sh update: usr/src/cmd/tar/Makefile update: usr/src/cmd/tar/tar.c update: usr/src/cmd/truss/Makefile.com update: usr/src/cmd/t...
2008 Aug 25
11
pid-provider sees ld.so.1 only
I''m trying to do some userspace tracing on a server-process with the pid provider. My problem is, that the only probes the pid-provider lists for the server-process (to which I attach dtrace with "-p nnnn") are coming from "ld.so.1". There''s not a single one from my modules. If I''m specifying "a.out" (or any of our shared-objects) as the
2014 Sep 15
3
Prepare the way for performance counters in perfmon
Hi folks, This set of patches is just for clearing the way before introducing the infrastructure for performance counters in perfmon. I'll try to publish a new version of my kernel interface based on nvif in a couple of days. See you.
2012 Oct 10
4
[Bug 55832] New: xf86-video-nouveau-1.0.2 - Xorg crashes once a week : segmentation fault in NVRefreshArea
...;, width=<optimized out>, height=75, dstx=0, dsty=0) at /var/tmp/portage/x11-base/xorg-server-1.13.0/work/xorg-server-1.13.0/hw/xfree86/shadowfb/shadow.c:618 ret = <optimized out> box = {x1 = 1585, y1 = 1136, x2 = 2225, y2 = 1211} boxNotEmpty = 1 pPriv = 0x10cd450 pGCPriv = 0x14fe160 oldFuncs = 0x7f1f9121e1c0 <ShadowGCFuncs> #2 0x0000000000436f43 in ProcCopyArea (client=0x147b480) at /var/tmp/portage/x11-base/xorg-server-1.13.0/work/xorg-server-1.13.0/dix/dispatch.c:1622 pDst = 0x3f65130 pSrc = 0x3c39750...
2010 Dec 18
10
a single nfs file system shared out twice with different permissions
I am trying to configure a system where I have two different NFS shares which point to the same directory. The idea is if you come in via one path, you will have read-only access and can''t delete any files, if you come in the 2nd path, then you will have read/write access. For example, create the read/write nfs share: zfs create tank/snapshots zfs set sharenfs=on tank/snapshots root