search for: nouveau_state_func

Displaying 2 results from an estimated 2 matches for "nouveau_state_func".

2014 Jan 10
2
[PATCH] nouveau: add framebuffer validation callback
...rs/dri/nouveau/nouveau_driver.h +++ b/src/mesa/drivers/dri/nouveau/nouveau_driver.h @@ -60,6 +60,7 @@ struct nouveau_driver { struct nouveau_surface *dst, unsigned mask, unsigned value, int dx, int dy, int w, int h); + bool (*is_rt_format_supported)(gl_format format); nouveau_state_func *emit; int num_emit; diff --git a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c index 25543e4..fba0d52 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c @@ -268,6 +268,43 @@ nouveau_finish_render_text...
2014 Jan 14
0
[PATCH] nouveau: add framebuffer validation callback
...b/src/mesa/drivers/dri/nouveau/nouveau_driver.h > @@ -60,6 +60,7 @@ struct nouveau_driver { > struct nouveau_surface *dst, > unsigned mask, unsigned value, > int dx, int dy, int w, int h); > + bool (*is_rt_format_supported)(gl_format format); > > nouveau_state_func *emit; > int num_emit; > diff --git a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c > index 25543e4..fba0d52 100644 > --- a/src/mesa/drivers/dri/nouveau/nouveau_fbo.c > +++ b/src/mesa/drivers/dri/nouveau/nouveau_fbo.c > @@ -268,6 +268,43...