/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_framebuffer.c | 58 for (i = 0; i < Elements(src->cbufs); i++) { 59 if (dst->cbufs[i] != src->cbufs[i]) { 89 pipe_surface_reference(&dst->cbufs[i], src->cbufs[i]); 92 pipe_surface_reference(&dst->cbufs[i], NULL); 106 pipe_surface_reference(&fb->cbufs[i], NULL); 129 w = MIN2(w, fb->cbufs[i]->width); 130 h = MIN2(h, fb->cbufs[i]->height);
|
u_clear.h | 48 struct pipe_surface *ps = framebuffer->cbufs[i];
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_framebuffer.c | 58 for (i = 0; i < Elements(src->cbufs); i++) { 59 if (dst->cbufs[i] != src->cbufs[i]) { 89 pipe_surface_reference(&dst->cbufs[i], src->cbufs[i]); 92 pipe_surface_reference(&dst->cbufs[i], NULL); 106 pipe_surface_reference(&fb->cbufs[i], NULL); 129 w = MIN2(w, fb->cbufs[i]->width); 130 h = MIN2(h, fb->cbufs[i]->height);
|
u_clear.h | 48 struct pipe_surface *ps = framebuffer->cbufs[i];
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_pipe_misc.c | 58 pipe_surface_reference(&curr->cbufs[i], NULL); 59 pipe_surface_reference(&hw->cbufs[i], NULL); 86 if (dst->cbufs[i] && dst->cbufs[i] != fb->cbufs[i]) 87 if (svga_surface_needs_propagation(dst->cbufs[i])) 96 if (dst->cbufs[i] && dst->cbufs[i] != fb->cbufs[i]) 97 svga_propagate_surface(svga, dst->cbufs[i]) [all...] |
svga_pipe_clear.c | 62 if ((buffers & PIPE_CLEAR_COLOR) && fb->cbufs[0]) { 66 rect.w = fb->cbufs[0]->width; 67 rect.h = fb->cbufs[0]->height; 116 svga_surface(svga->curr.framebuffer.cbufs[0])->handle);
|
svga_pipe_flush.c | 59 debug_dump_surface_bmp(&svga->pipe, filename, fb->cbufs[i]);
|
svga_state_framebuffer.c | 57 if (curr->cbufs[i] != hw->cbufs[i] || 58 (reemit && hw->cbufs[i])) { 62 ret = SVGA3D_SetRenderTarget(svga->swc, SVGA3D_RT_COLOR0 + i, curr->cbufs[i]); 66 pipe_surface_reference(&hw->cbufs[i], curr->cbufs[i]); 116 if (hw->cbufs[i]) { 117 ret = SVGA3D_SetRenderTarget(svga->swc, SVGA3D_RT_COLOR0 + i, hw->cbufs[i]);
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_misc.c | 58 pipe_surface_reference(&curr->cbufs[i], NULL); 59 pipe_surface_reference(&hw->cbufs[i], NULL); 86 if (dst->cbufs[i] && dst->cbufs[i] != fb->cbufs[i]) 87 if (svga_surface_needs_propagation(dst->cbufs[i])) 96 if (dst->cbufs[i] && dst->cbufs[i] != fb->cbufs[i]) 97 svga_propagate_surface(svga, dst->cbufs[i]) [all...] |
svga_pipe_clear.c | 62 if ((buffers & PIPE_CLEAR_COLOR) && fb->cbufs[0]) { 66 rect.w = fb->cbufs[0]->width; 67 rect.h = fb->cbufs[0]->height; 116 svga_surface(svga->curr.framebuffer.cbufs[0])->handle);
|
svga_pipe_flush.c | 59 debug_dump_surface_bmp(&svga->pipe, filename, fb->cbufs[i]);
|
svga_state_framebuffer.c | 57 if (curr->cbufs[i] != hw->cbufs[i] || 58 (reemit && hw->cbufs[i])) { 62 ret = SVGA3D_SetRenderTarget(svga->swc, SVGA3D_RT_COLOR0 + i, curr->cbufs[i]); 66 pipe_surface_reference(&hw->cbufs[i], curr->cbufs[i]); 116 if (hw->cbufs[i]) { 117 ret = SVGA3D_SetRenderTarget(svga->swc, SVGA3D_RT_COLOR0 + i, hw->cbufs[i]);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_state_surface.c | 58 if (sp->framebuffer.cbufs[i] != fb->cbufs[i]) { 63 pipe_surface_reference(&sp->framebuffer.cbufs[i], fb->cbufs[i]); 66 sp_tile_cache_set_surface(sp->cbuf_cache[i], fb->cbufs[i]);
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state_surface.c | 58 if (sp->framebuffer.cbufs[i] != fb->cbufs[i]) { 63 pipe_surface_reference(&sp->framebuffer.cbufs[i], fb->cbufs[i]); 66 sp_tile_cache_set_surface(sp->cbuf_cache[i], fb->cbufs[i]);
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_atom_msaa.c | 47 else if (framebuffer->cbufs[0]) 48 sample_count = framebuffer->cbufs[0]->texture->nr_samples;
|
st_atom_framebuffer.c | 131 pipe_surface_reference(&framebuffer->cbufs[framebuffer->nr_cbufs], 139 pipe_surface_reference(&framebuffer->cbufs[i], NULL); 166 assert(framebuffer->cbufs[i]->texture->bind & PIPE_BIND_RENDER_TARGET);
|
/external/mesa3d/src/mesa/state_tracker/ |
st_atom_msaa.c | 47 else if (framebuffer->cbufs[0]) 48 sample_count = framebuffer->cbufs[0]->texture->nr_samples;
|
st_atom_framebuffer.c | 131 pipe_surface_reference(&framebuffer->cbufs[framebuffer->nr_cbufs], 139 pipe_surface_reference(&framebuffer->cbufs[i], NULL); 166 assert(framebuffer->cbufs[i]->texture->bind & PIPE_BIND_RENDER_TARGET);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/ |
rbug_context.h | 56 struct rbug_resource *cbufs[PIPE_MAX_COLOR_BUFS]; member in struct:rbug_context::__anon12756
|
/external/mesa3d/src/gallium/drivers/rbug/ |
rbug_context.h | 56 struct rbug_resource *cbufs[PIPE_MAX_COLOR_BUFS]; member in struct:rbug_context::__anon23223
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_flush.c | 65 debug_dump_surface_bmp(&llvmpipe->pipe, filename, llvmpipe->framebuffer.cbufs[i]);
|
lp_scene.c | 143 struct pipe_surface *cbuf = scene->fb.cbufs[i]; 145 scene->cbufs[i].stride = llvmpipe_resource_stride(cbuf->texture, 148 scene->cbufs[i].map = llvmpipe_resource_map(cbuf->texture, 183 if (scene->cbufs[i].map) { 184 struct pipe_surface *cbuf = scene->fb.cbufs[i]; 188 scene->cbufs[i].map = NULL;
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_flush.c | 65 debug_dump_surface_bmp(&llvmpipe->pipe, filename, llvmpipe->framebuffer.cbufs[i]);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_state_validate.c | 54 struct nv30_miptree *mt = nv30_miptree(fb->cbufs[0]->texture); 55 rt_format |= nv30_format(pscreen, fb->cbufs[0]->format)->hw; 75 if (fb->nr_cbufs && util_format_get_blocksize(fb->cbufs[0]->format) > 2) 87 int off = nv30_surface(fb->cbufs[0])->offset & 63; 89 x += off / (util_format_get_blocksize(fb->cbufs[0]->format) * 2); 120 struct nv30_surface *rsf = nv30_surface(fb->cbufs[0]); 145 struct nv30_surface *sf = nv30_surface(fb->cbufs[1]); 155 struct nv30_surface *sf = nv30_surface(fb->cbufs[2]); 166 struct nv30_surface *sf = nv30_surface(fb->cbufs[3]); 184 switch (nv30->framebuffer.cbufs[0]->format) [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_state_validate.c | 54 struct nv30_miptree *mt = nv30_miptree(fb->cbufs[0]->texture); 55 rt_format |= nv30_format(pscreen, fb->cbufs[0]->format)->hw; 75 if (fb->nr_cbufs && util_format_get_blocksize(fb->cbufs[0]->format) > 2) 87 int off = nv30_surface(fb->cbufs[0])->offset & 63; 89 x += off / (util_format_get_blocksize(fb->cbufs[0]->format) * 2); 120 struct nv30_surface *rsf = nv30_surface(fb->cbufs[0]); 145 struct nv30_surface *sf = nv30_surface(fb->cbufs[1]); 155 struct nv30_surface *sf = nv30_surface(fb->cbufs[2]); 166 struct nv30_surface *sf = nv30_surface(fb->cbufs[3]); 184 switch (nv30->framebuffer.cbufs[0]->format) [all...] |