search for: 7682214

Displaying 4 results from an estimated 4 matches for "7682214".

2014 Jun 16
2
[PATCH 1/2] gallium/nouveau: decouple nouveau_fence implementation from screen
...) +{ + struct nouveau_screen *screen = NULL; + + screen = container_of(mgr, screen, fence); + + return nouveau_pushbuf_kick(screen->pushbuf, screen->pushbuf->channel); +} diff --git a/src/gallium/drivers/nouveau/nouveau_screen.h b/src/gallium/drivers/nouveau/nouveau_screen.h index cf06f7e..7682214 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.h +++ b/src/gallium/drivers/nouveau/nouveau_screen.h @@ -4,6 +4,8 @@ #include "pipe/p_screen.h" #include "util/u_memory.h" +#include "nouveau_fence.h" + #ifdef DEBUG # define NOUVEAU_ENABLE_DRIVER_STATI...
2014 Jun 17
2
[PATCH try 2 1/2] gallium/nouveau: decouple nouveau_fence implementation from screen
...) +{ + struct nouveau_screen *screen = NULL; + + screen = container_of(mgr, screen, fence); + + return nouveau_pushbuf_kick(screen->pushbuf, screen->pushbuf->channel); +} diff --git a/src/gallium/drivers/nouveau/nouveau_screen.h b/src/gallium/drivers/nouveau/nouveau_screen.h index cf06f7e..7682214 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.h +++ b/src/gallium/drivers/nouveau/nouveau_screen.h @@ -4,6 +4,8 @@ #include "pipe/p_screen.h" #include "util/u_memory.h" +#include "nouveau_fence.h" + #ifdef DEBUG # define NOUVEAU_ENABLE_DRIVER_STATISTICS...
2014 Jun 17
0
[PATCH try 2 2/2] gallium/nouveau: move pushbuf and fences to context
..._mgr *mgr) -{ - struct nouveau_screen *screen = NULL; - - screen = container_of(mgr, screen, fence); - - return nouveau_pushbuf_kick(screen->pushbuf, screen->pushbuf->channel); -} diff --git a/src/gallium/drivers/nouveau/nouveau_screen.h b/src/gallium/drivers/nouveau/nouveau_screen.h index 7682214..c1e9bc3 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.h +++ b/src/gallium/drivers/nouveau/nouveau_screen.h @@ -22,7 +22,6 @@ struct nouveau_screen { struct nouveau_device *device; struct nouveau_object *channel; struct nouveau_client *client; - struct nouveau_pushbuf *pushbuf;...
2014 Jun 21
3
[Mesa-dev] [PATCH try 2 2/2] gallium/nouveau: move pushbuf and fences to context
...NULL; > - > - screen = container_of(mgr, screen, fence); > - > - return nouveau_pushbuf_kick(screen->pushbuf, screen->pushbuf->channel); > -} > diff --git a/src/gallium/drivers/nouveau/nouveau_screen.h b/src/gallium/drivers/nouveau/nouveau_screen.h > index 7682214..c1e9bc3 100644 > --- a/src/gallium/drivers/nouveau/nouveau_screen.h > +++ b/src/gallium/drivers/nouveau/nouveau_screen.h > @@ -22,7 +22,6 @@ struct nouveau_screen { > struct nouveau_device *device; > struct nouveau_object *channel; > struct nouveau_client...