search for: nv50_bufctx_fenc

Displaying 7 results from an estimated 7 matches for "nv50_bufctx_fenc".

Did you mean: nv50_bufctx_fence
2020 Aug 18
0
qemu -display sdl,gl=on also eats CPU
...not Halted) with a unit mask of 0x00 (No unit mask) count 100000 samples % linenr info image name symbol name ------------------------------------------------------------------------------- 385793 53.1157 nv50_context.c:409 nouveau_dri.so nv50_bufctx_fence 385793 100.000 nv50_context.c:409 nouveau_dri.so nv50_bufctx_fence [self] ------------------------------------------------------------------------------- 151037 20.7947 pushbuf.c:482 libdrm_nouveau.so.2.0.0 pushbuf_validate 151037 100.000 pushbuf.c:48...
2014 Jun 17
0
[PATCH try 2 2/2] gallium/nouveau: move pushbuf and fences to context
...return pipe; out_err: - if (nv50->bufctx_3d) - nouveau_bufctx_del(&nv50->bufctx_3d); - if (nv50->bufctx) - nouveau_bufctx_del(&nv50->bufctx); - if (nv50->blit) - FREE(nv50->blit); - FREE(nv50); + nv50_destroy(pipe); return NULL; } void -nv50_bufctx_fence(struct nouveau_bufctx *bufctx, boolean on_flush) +nv50_bufctx_fence(struct nv50_context *nv50, struct nouveau_bufctx *bufctx, boolean on_flush) { struct nouveau_list *list = on_flush ? &bufctx->current : &bufctx->pending; struct nouveau_list *it; @@ -341,7 +407,7 @@ nv50_buf...
2014 Jun 17
2
[PATCH try 2 1/2] gallium/nouveau: decouple nouveau_fence implementation from screen
...b/src/gallium/drivers/nouveau/nv50/nv50_vbo.c @@ -737,7 +737,7 @@ nv50_draw_vbo_kick_notify(struct nouveau_pushbuf *chan) { struct nv50_screen *screen = chan->user_priv; - nouveau_fence_update(&screen->base, TRUE); + nouveau_fence_update(&screen->base.fence, TRUE); nv50_bufctx_fence(screen->cur_ctx->bufctx_3d, TRUE); } diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c index e5040c4..52f8a57 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c @@ -1...
2020 Aug 17
0
qemu -display sdl,gl=on also eats CPU
...(estimated) Counted CPU_CLK_UNHALTED events (CPU Clocks not Halted) with a unit mask of 0x00 (No unit mask) count 100000 samples % image name symbol name ------------------------------------------------------------------------------- 222978 45.1489 nouveau_dri.so nv50_bufctx_fence 222978 100.000 nouveau_dri.so nv50_bufctx_fence [self] ------------------------------------------------------------------------------- 150576 30.4889 libdrm_nouveau.so.2.0.0 /usr/X11R7/lib/libdrm_nouveau.so.2.0.0 150576 100.000 libdrm_nouveau.so.2.0.0 /usr/X11R7/lib/libdrm...
2014 Jun 21
3
[Mesa-dev] [PATCH try 2 2/2] gallium/nouveau: move pushbuf and fences to context
...- nouveau_bufctx_del(&nv50->bufctx_3d); > - if (nv50->bufctx) > - nouveau_bufctx_del(&nv50->bufctx); > - if (nv50->blit) > - FREE(nv50->blit); > - FREE(nv50); > + nv50_destroy(pipe); > return NULL; > } > > void > -nv50_bufctx_fence(struct nouveau_bufctx *bufctx, boolean on_flush) > +nv50_bufctx_fence(struct nv50_context *nv50, struct nouveau_bufctx *bufctx, boolean on_flush) > { > struct nouveau_list *list = on_flush ? &bufctx->current : &bufctx->pending; > struct nouveau_list *it; > @@...
2014 Jun 16
2
[PATCH 1/2] gallium/nouveau: decouple nouveau_fence implementation from screen
.../gallium/drivers/nouveau/nv50/nv50_vbo.c @@ -737,7 +737,7 @@ nv50_draw_vbo_kick_notify(struct nouveau_pushbuf *chan) { struct nv50_screen *screen = chan->user_priv; - nouveau_fence_update(&screen->base, TRUE); + nouveau_fence_update(&screen->base.fence, TRUE); nv50_bufctx_fence(screen->cur_ctx->bufctx_3d, TRUE); } diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c index e5040c4..52f8a57 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_context.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_context.c @@ -...
2014 Jan 13
20
[PATCH 00/19] nv50: add sampler2DMS/GP support to get OpenGL 3.2
OK, so there's a bunch of stuff in here. The geometry stuff is based on the work started by Bryan Cain and Christoph Bumiller. Patches 01-12: Add support for geometry shaders and fix related issues Patches 13-14: Make it possible for fb clears to operate on texture attachments with an explicit layer set (as is allowed in gl 3.2). Patches 15-17: Make ARB_texture_multisample work