/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_idct.h | 31 #include "pipe/p_state.h" 40 struct pipe_context *pipe; member in struct:vl_idct 78 /* upload the idct matrix, which can be shared by all idct instances of a pipe */ 80 vl_idct_upload_matrix(struct pipe_context *pipe, float scale); 92 vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe,
|
vl_mc.h | 31 #include "pipe/p_state.h" 32 #include "pipe/p_video_state.h" 45 struct pipe_context *pipe; member in struct:vl_mc 78 bool vl_mc_init(struct vl_mc *renderer, struct pipe_context *pipe,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_context.h | 4 #include "pipe/p_context.h" 10 struct pipe_context pipe; member in struct:nouveau_context 46 nouveau_context(struct pipe_context *pipe) 48 return (struct nouveau_context *)pipe;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_fragprog.c | 38 struct pipe_context *pipe = &nv30->base.pipe; local 44 fp->buffer = pipe_buffer_create(pipe->screen, 0, 0, fp->insn_len * 4); 47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer); 54 pipe_buffer_unmap(pipe, transfer); 131 nv30_fp_state_create(struct pipe_context *pipe, 138 fp->pipe.tokens = tgsi_dup_tokens(cso->tokens); 139 tgsi_scan_shader(fp->pipe.tokens, &fp->info); 144 nv30_fp_state_delete(struct pipe_context *pipe, void *hwcso) 150 FREE((void *)fp->pipe.tokens) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/ |
rbug_context.h | 31 #include "pipe/p_state.h" 32 #include "pipe/p_context.h" 40 struct pipe_context *pipe; member in struct:rbug_context 83 rbug_context(struct pipe_context *pipe) 85 return (struct rbug_context *)pipe; 94 rbug_context_create(struct pipe_screen *screen, struct pipe_context *pipe);
|
rbug_objects.h | 32 #include "pipe/p_compiler.h" 33 #include "pipe/p_state.h" 91 struct pipe_context *pipe; member in struct:rbug_transfer
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_draw_arrays.c | 48 struct pipe_context *pipe = &hwtnl->svga->pipe; local 54 dst = pipe_buffer_create( pipe->screen, 61 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE, 69 pipe_buffer_unmap( pipe, transfer ); 76 pipe_buffer_unmap( pipe, transfer ); 79 pipe->screen->resource_destroy( pipe->screen, dst );
|
svga_draw_elements.c | 49 struct pipe_context *pipe = &hwtnl->svga->pipe; local 57 dst = pipe_buffer_create( pipe->screen, 64 src_map = pipe_buffer_map( pipe, src, PIPE_TRANSFER_READ, &src_transfer ); 68 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE, &dst_transfer ); 76 pipe_buffer_unmap( pipe, src_transfer ); 77 pipe_buffer_unmap( pipe, dst_transfer ); 84 pipe_buffer_unmap( pipe, src_transfer ); 87 pipe_buffer_unmap( pipe, dst_transfer ); 90 pipe->screen->resource_destroy( pipe->screen, dst ) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
resource.cpp | 24 #include "pipe/p_screen.h" 34 pipe({ (unsigned)origin[0], (unsigned)origin[1], 40 return &pipe; 44 pipe_box pipe; member in class:__anon12988::box 49 dev(dev), obj(obj), pipe(NULL), offset{0} { 60 q.pipe->resource_copy_region(q.pipe, pipe, 0, p[0], p[1], p[2], 61 src_res.pipe, 0, 88 u_sampler_view_default_template(&info, pipe, pipe->format) [all...] |
resource.hpp | 31 #include "pipe/p_state.h" 72 pipe_resource *pipe; member in class:clover::resource
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/ |
presentation.c | 208 struct pipe_context *pipe; local 224 pipe = pq->device->context; 240 surf_draw = pipe->create_surface(pipe, tex, &surf_templ); 272 pipe->screen->flush_frontbuffer 274 pipe->screen, tex, 0, 0, 278 pipe->screen->fence_reference(pipe->screen, &surf->fence, NULL); 279 pipe->flush(pipe, &surf->fence) [all...] |
surface.c | 31 #include "pipe/p_state.h" 48 struct pipe_context *pipe; local 75 pipe = dev->context; 79 p_surf->templat.buffer_format = pipe->screen->get_video_param 81 pipe->screen, 88 p_surf->templat.interlaced = pipe->screen->get_video_param 90 pipe->screen, 94 p_surf->video_buffer = pipe->create_video_buffer(pipe, &p_surf->templat); 197 struct pipe_context *pipe; local 276 struct pipe_context *pipe; local 349 struct pipe_context *pipe = vlsurf->device->context; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
vg_manager.c | 32 #include "pipe/p_context.h" 33 #include "pipe/p_screen.h" 49 struct pipe_context *pipe = ctx->pipe; local 67 strb->surface = pipe->create_surface(pipe, strb->texture, &surf_tmpl); 148 ctx->pipe->flush(ctx->pipe, fence); 157 struct pipe_context *pipe = ctx->pipe; local 171 struct pipe_context *pipe; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/ |
context.c | 33 #include "pipe/p_screen.h" 34 #include "pipe/p_video_decoder.h" 35 #include "pipe/p_video_state.h" 36 #include "pipe/p_state.h" 193 struct pipe_context *pipe; local 239 pipe = vscreen->pscreen->context_create(vscreen->pscreen, vscreen); 240 if (!pipe) { 247 context_priv->decoder = pipe->create_video_decoder 249 pipe, ProfileToPipe(mc_type), 258 pipe->destroy(pipe) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/wrapper/ |
wrapper_sw_winsys.c | 29 #include "pipe/p_format.h" 30 #include "pipe/p_state.h" 42 * We must borrow the whole stack because only the pipe screen knows how 47 * We also need a pipe context for the transfers. 54 struct pipe_context *pipe; member in struct:wrapper_sw_winsys 90 struct pipe_context *pipe = wdt->winsys->pipe; local 94 tr = pipe_get_transfer(pipe, tex, 0, 0, 103 pipe->transfer_destroy(pipe, tr) 198 struct pipe_context *pipe = wdt->winsys->pipe; local 238 struct pipe_context *pipe = wdt->winsys->pipe; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_cb_xformfb.c | 46 #include "pipe/p_context.h" 115 struct pipe_context *pipe = st->pipe; local 136 pipe->create_stream_output_target(pipe, bo->buffer,
|
st_draw_feedback.c | 41 #include "pipe/p_context.h" 42 #include "pipe/p_defines.h" 103 struct pipe_context *pipe = st->pipe; local 136 * code sends state updates to the pipe, not to our private draw module. 178 map = pipe_buffer_map(pipe, vbuffers[attr].buffer, 227 mapped_indices = pipe_buffer_map(pipe, stobj->buffer, 258 pipe_buffer_unmap(pipe, ib_transfer); 265 pipe_buffer_unmap(pipe, vb_transfer[attr]);
|
st_gen_mipmap.c | 33 #include "pipe/p_context.h" 34 #include "pipe/p_defines.h" 54 st->gen_mipmap = util_create_gen_mipmap(st->pipe, st->cso_context); 76 struct pipe_context *pipe = st->pipe; local 77 struct pipe_screen *screen = pipe->screen; 94 psv = st_create_texture_sampler_view(pipe, stObj->pt); 98 pipe->render_condition(pipe, NULL, 0); 105 pipe->render_condition(pipe, st->render_condition, st->condition_mode) [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_upload_mgr.c | 32 #include "pipe/p_defines.h" 34 #include "pipe/p_context.h" 42 struct pipe_context *pipe; member in struct:u_upload_mgr 57 struct u_upload_mgr *u_upload_create( struct pipe_context *pipe, 66 upload->pipe = pipe; 81 pipe_buffer_flush_mapped_range(upload->pipe, upload->transfer, 84 pipe_transfer_unmap(upload->pipe, upload->transfer); 85 pipe_transfer_destroy(upload->pipe, upload->transfer); 130 upload->buffer = pipe_buffer_create( upload->pipe->screen [all...] |
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_idct.h | 31 #include "pipe/p_state.h" 40 struct pipe_context *pipe; member in struct:vl_idct 78 /* upload the idct matrix, which can be shared by all idct instances of a pipe */ 80 vl_idct_upload_matrix(struct pipe_context *pipe, float scale); 92 vl_idct_init(struct vl_idct *idct, struct pipe_context *pipe,
|
vl_mc.h | 31 #include "pipe/p_state.h" 32 #include "pipe/p_video_state.h" 45 struct pipe_context *pipe; member in struct:vl_mc 78 bool vl_mc_init(struct vl_mc *renderer, struct pipe_context *pipe,
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_context.h | 4 #include "pipe/p_context.h" 10 struct pipe_context pipe; member in struct:nouveau_context 46 nouveau_context(struct pipe_context *pipe) 48 return (struct nouveau_context *)pipe;
|
/external/mesa3d/src/gallium/drivers/nv30/ |
nv30_fragprog.c | 38 struct pipe_context *pipe = &nv30->base.pipe; local 44 fp->buffer = pipe_buffer_create(pipe->screen, 0, 0, fp->insn_len * 4); 47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer); 54 pipe_buffer_unmap(pipe, transfer); 131 nv30_fp_state_create(struct pipe_context *pipe, 138 fp->pipe.tokens = tgsi_dup_tokens(cso->tokens); 139 tgsi_scan_shader(fp->pipe.tokens, &fp->info); 144 nv30_fp_state_delete(struct pipe_context *pipe, void *hwcso) 150 FREE((void *)fp->pipe.tokens) [all...] |
/external/mesa3d/src/gallium/drivers/rbug/ |
rbug_context.h | 31 #include "pipe/p_state.h" 32 #include "pipe/p_context.h" 40 struct pipe_context *pipe; member in struct:rbug_context 83 rbug_context(struct pipe_context *pipe) 85 return (struct rbug_context *)pipe; 94 rbug_context_create(struct pipe_screen *screen, struct pipe_context *pipe);
|
rbug_objects.h | 32 #include "pipe/p_compiler.h" 33 #include "pipe/p_state.h" 91 struct pipe_context *pipe; member in struct:rbug_transfer
|