HomeSort by relevance Sort by last modified time
    Searched full:pipe (Results 126 - 150 of 5243) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_sampler.c 45 llvmpipe_create_sampler_state(struct pipe_context *pipe,
68 llvmpipe_bind_sampler_states(struct pipe_context *pipe,
74 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
114 llvmpipe_bind_fragment_sampler_states(struct pipe_context *pipe,
117 llvmpipe_bind_sampler_states(pipe, PIPE_SHADER_FRAGMENT, 0, num, samplers);
122 llvmpipe_bind_vertex_sampler_states(struct pipe_context *pipe,
125 llvmpipe_bind_sampler_states(pipe, PIPE_SHADER_VERTEX, 0, num, samplers);
130 llvmpipe_bind_geometry_sampler_states(struct pipe_context *pipe,
133 llvmpipe_bind_sampler_states(pipe, PIPE_SHADER_GEOMETRY, 0, num, samplers);
137 llvmpipe_set_sampler_views(struct pipe_context *pipe,
    [all...]
lp_context.c 35 #include "pipe/p_defines.h"
54 static void llvmpipe_destroy( struct pipe_context *pipe )
56 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
96 do_flush( struct pipe_context *pipe,
99 llvmpipe_flush(pipe, fence, __FUNCTION__);
104 llvmpipe_render_condition ( struct pipe_context *pipe,
108 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
132 llvmpipe->pipe.screen = screen;
133 llvmpipe->pipe.priv = priv;
135 /* Init the pipe context methods *
    [all...]
lp_state_gs.c 32 #include "pipe/p_defines.h"
42 llvmpipe_create_gs_state(struct pipe_context *pipe,
45 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
79 llvmpipe_bind_gs_state(struct pipe_context *pipe, void *gs)
81 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
93 llvmpipe_delete_gs_state(struct pipe_context *pipe, void *gs)
95 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
109 llvmpipe->pipe.create_gs_state = llvmpipe_create_gs_state;
110 llvmpipe->pipe.bind_gs_state = llvmpipe_bind_gs_state;
111 llvmpipe->pipe.delete_gs_state = llvmpipe_delete_gs_state
    [all...]
  /external/mesa3d/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/gallium/auxiliary/vl/
vl_idct.c 30 #include "pipe/p_context.h"
31 #include "pipe/p_screen.h"
188 return ureg_create_shader_and_destroy(shader, idct->pipe);
255 return ureg_create_shader_and_destroy(shader, idct->pipe);
317 return ureg_create_shader_and_destroy(shader, idct->pipe);
391 return ureg_create_shader_and_destroy(shader, idct->pipe);
486 idct->pipe->delete_vs_state(idct->pipe, idct->vs);
489 idct->pipe->delete_vs_state(idct->pipe, idct->vs_mismatch)
    [all...]
vl_vertex_buffers.c 39 vl_vb_upload_quads(struct pipe_context *pipe)
47 assert(pipe);
54 pipe->screen,
67 pipe,
78 pipe_buffer_unmap(pipe, buf_transfer);
84 vl_vb_upload_pos(struct pipe_context *pipe, unsigned width, unsigned height)
92 assert(pipe);
99 pipe->screen,
112 pipe,
125 pipe_buffer_unmap(pipe, buf_transfer)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c 30 #include "pipe/p_context.h"
31 #include "pipe/p_screen.h"
188 return ureg_create_shader_and_destroy(shader, idct->pipe);
255 return ureg_create_shader_and_destroy(shader, idct->pipe);
317 return ureg_create_shader_and_destroy(shader, idct->pipe);
391 return ureg_create_shader_and_destroy(shader, idct->pipe);
486 idct->pipe->delete_vs_state(idct->pipe, idct->vs);
489 idct->pipe->delete_vs_state(idct->pipe, idct->vs_mismatch)
    [all...]
vl_vertex_buffers.c 39 vl_vb_upload_quads(struct pipe_context *pipe)
47 assert(pipe);
54 pipe->screen,
67 pipe,
78 pipe_buffer_unmap(pipe, buf_transfer);
84 vl_vb_upload_pos(struct pipe_context *pipe, unsigned width, unsigned height)
92 assert(pipe);
99 pipe->screen,
112 pipe,
125 pipe_buffer_unmap(pipe, buf_transfer)
    [all...]
  /external/chromium_org/remoting/host/
ipc_util_win.cc 21 // Pipe name prefix used by Chrome IPC channels to convert a channel name into
22 // a pipe name.
23 const char kChromePipeNamePrefix[] = "\\\\.\\pipe\\chrome.";
37 // Create a security descriptor that will be used to protect the named pipe in
48 ScopedHandle pipe; local
49 if (!CreateIpcChannel(channel_name, security_descriptor, &pipe)) {
53 // Wrap the pipe into an IPC channel.
55 IPC::ChannelHandle(pipe),
60 // Convert the channel name to the pipe name.
107 // Convert the channel name to the pipe name
113 base::win::ScopedHandle pipe; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_tile.h 31 #include "pipe/p_compiler.h"
32 #include "pipe/p_format.h"
33 #include "pipe/p_state.h"
64 pipe_get_tile_raw(struct pipe_context *pipe,
70 pipe_put_tile_raw(struct pipe_context *pipe,
77 pipe_get_tile_rgba(struct pipe_context *pipe,
83 pipe_get_tile_rgba_format(struct pipe_context *pipe,
90 pipe_put_tile_rgba(struct pipe_context *pipe,
96 pipe_put_tile_rgba_format(struct pipe_context *pipe,
104 pipe_get_tile_z(struct pipe_context *pipe,
    [all...]
u_surface.c 35 #include "pipe/p_defines.h"
36 #include "pipe/p_screen.h"
37 #include "pipe/p_state.h"
69 util_create_rgba_surface(struct pipe_context *pipe,
85 struct pipe_screen *screen = pipe->screen;
117 *surfaceOut = pipe->create_surface(pipe,
143 * Fallback function for pipe->resource_copy_region().
147 util_resource_copy_region(struct pipe_context *pipe,
172 src_trans = pipe_get_transfer(pipe,
    [all...]
u_transfer.c 1 #include "pipe/p_context.h"
10 void u_default_transfer_inline_write( struct pipe_context *pipe,
34 transfer = pipe->get_transfer(pipe,
42 map = pipe_transfer_map(pipe, transfer);
73 pipe_transfer_unmap(pipe, transfer);
76 pipe_transfer_destroy(pipe, transfer);
89 void u_default_transfer_flush_region( struct pipe_context *pipe,
118 void u_default_transfer_unmap( struct pipe_context *pipe,
123 void u_default_transfer_destroy(struct pipe_context *pipe,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_tile.h 31 #include "pipe/p_compiler.h"
32 #include "pipe/p_format.h"
33 #include "pipe/p_state.h"
64 pipe_get_tile_raw(struct pipe_context *pipe,
70 pipe_put_tile_raw(struct pipe_context *pipe,
77 pipe_get_tile_rgba(struct pipe_context *pipe,
83 pipe_get_tile_rgba_format(struct pipe_context *pipe,
90 pipe_put_tile_rgba(struct pipe_context *pipe,
96 pipe_put_tile_rgba_format(struct pipe_context *pipe,
104 pipe_get_tile_z(struct pipe_context *pipe,
    [all...]
u_surface.c 35 #include "pipe/p_defines.h"
36 #include "pipe/p_screen.h"
37 #include "pipe/p_state.h"
69 util_create_rgba_surface(struct pipe_context *pipe,
85 struct pipe_screen *screen = pipe->screen;
117 *surfaceOut = pipe->create_surface(pipe,
143 * Fallback function for pipe->resource_copy_region().
147 util_resource_copy_region(struct pipe_context *pipe,
172 src_trans = pipe_get_transfer(pipe,
    [all...]
u_transfer.c 1 #include "pipe/p_context.h"
10 void u_default_transfer_inline_write( struct pipe_context *pipe,
34 transfer = pipe->get_transfer(pipe,
42 map = pipe_transfer_map(pipe, transfer);
73 pipe_transfer_unmap(pipe, transfer);
76 pipe_transfer_destroy(pipe, transfer);
89 void u_default_transfer_flush_region( struct pipe_context *pipe,
118 void u_default_transfer_unmap( struct pipe_context *pipe,
123 void u_default_transfer_destroy(struct pipe_context *pipe,
    [all...]
  /external/chromium_org/sandbox/win/src/
named_pipe_policy_test.cc 24 HANDLE pipe = ::CreateNamedPipeW(argv[0], local
28 if (INVALID_HANDLE_VALUE == pipe)
32 // pipe should be in the object namespace after creation.
35 if (GetHandleName(pipe, &handle_name)) {
45 BOOL result = ::ConnectNamedPipe(pipe, &overlapped);
55 if (!::CloseHandle(pipe))
62 // Tests if we can create a pipe in the sandbox.
69 L"\\\\.\\pipe\\test*"));
72 runner.RunTest(L"NamedPipe_Create \\\\.\\pipe\\testbleh"));
74 // On XP, the sandbox can create a pipe without any help but it fails o
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_context.c 35 #include "pipe/p_defines.h"
54 static void llvmpipe_destroy( struct pipe_context *pipe )
56 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
96 do_flush( struct pipe_context *pipe,
99 llvmpipe_flush(pipe, fence, __FUNCTION__);
104 llvmpipe_render_condition ( struct pipe_context *pipe,
108 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
132 llvmpipe->pipe.screen = screen;
133 llvmpipe->pipe.priv = priv;
135 /* Init the pipe context methods *
    [all...]
lp_state_gs.c 32 #include "pipe/p_defines.h"
42 llvmpipe_create_gs_state(struct pipe_context *pipe,
45 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
79 llvmpipe_bind_gs_state(struct pipe_context *pipe, void *gs)
81 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
93 llvmpipe_delete_gs_state(struct pipe_context *pipe, void *gs)
95 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
109 llvmpipe->pipe.create_gs_state = llvmpipe_create_gs_state;
110 llvmpipe->pipe.bind_gs_state = llvmpipe_bind_gs_state;
111 llvmpipe->pipe.delete_gs_state = llvmpipe_delete_gs_state
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_objects.c 140 rb_view->base.context = rb_context->pipe;
153 rb_context->pipe->sampler_view_destroy(rb_context->pipe,
179 rb_transfer->pipe = rb_context->pipe;
187 rb_context->pipe->transfer_destroy(rb_context->pipe, transfer);
196 rb_transfer->pipe->transfer_destroy(rb_context->pipe,
222 struct pipe_context *pipe = rb_context->pipe local
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.c 140 rb_view->base.context = rb_context->pipe;
153 rb_context->pipe->sampler_view_destroy(rb_context->pipe,
179 rb_transfer->pipe = rb_context->pipe;
187 rb_context->pipe->transfer_destroy(rb_context->pipe, transfer);
196 rb_transfer->pipe->transfer_destroy(rb_context->pipe,
222 struct pipe_context *pipe = rb_context->pipe local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
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/mesa3d/src/gallium/state_trackers/vdpau/
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/xa/
xa_context.c 35 #include "pipe/p_context.h"
50 ctx->pipe = xa->screen->context_create(xa->screen, NULL);
51 ctx->cso = cso_create_context(ctx->pipe);
83 r->pipe->destroy(r->pipe);
97 struct pipe_context *pipe = ctx->pipe; local
106 transfer = pipe_get_transfer(pipe, srf->tex, 0, 0,
112 map = pipe_transfer_map(ctx->pipe, transfer);
124 pipe->transfer_unmap(pipe, transfer)
141 struct pipe_context *pipe = ctx->pipe; local
175 struct pipe_context *pipe = srf->mapping_pipe; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_condrender.c 39 #include "pipe/p_context.h"
40 #include "pipe/p_defines.h"
56 struct pipe_context *pipe = st->pipe; local
82 pipe->render_condition(pipe, stq->pq, m);
93 struct pipe_context *pipe = st->pipe; local
98 pipe->render_condition(pipe, NULL, 0)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_context.c 35 #include "pipe/p_context.h"
50 ctx->pipe = xa->screen->context_create(xa->screen, NULL);
51 ctx->cso = cso_create_context(ctx->pipe);
83 r->pipe->destroy(r->pipe);
97 struct pipe_context *pipe = ctx->pipe; local
106 transfer = pipe_get_transfer(pipe, srf->tex, 0, 0,
112 map = pipe_transfer_map(ctx->pipe, transfer);
124 pipe->transfer_unmap(pipe, transfer)
141 struct pipe_context *pipe = ctx->pipe; local
175 struct pipe_context *pipe = srf->mapping_pipe; local
    [all...]

Completed in 474 milliseconds

1 2 3 4 56 7 8 91011>>