Lines Matching defs:pipe
45 #include "pipe/p_screen.h"
46 #include "pipe/p_context.h"
47 #include "pipe/p_config.h"
260 This->context.pipe = This->screen->context_create(This->screen, NULL, PIPE_CONTEXT_PREFER_THREADED);
262 if (!This->context.pipe || !This->pipe_secondary) { return E_OUTOFMEMORY; } /* guess */
266 This->context.cso = cso_create_context(This->context.pipe, CSO_NO_USER_VERTEX_BUFFERS);
396 data = This->context.pipe->buffer_map(This->context.pipe, This->dummy_vbo, 0,
403 This->context.pipe->buffer_unmap(This->context.pipe, transfer);
537 This->dummy_sampler_view = This->context.pipe->create_sampler_view(This->context.pipe, This->dummy_texture, &templ);
558 This->vertex_uploader = This->csmt_active ? This->pipe_secondary->stream_uploader : This->context.pipe->stream_uploader;
576 This->context.pipe->set_polygon_stipple(This->context.pipe, &stipple);
655 if (This->context.pipe && This->context.pipe->destroy) { This->context.pipe->destroy(This->context.pipe); }
813 struct pipe_context *pipe = NineDevice9_GetPipe(This);
837 ptr = pipe->texture_map(pipe, This->cursor.image, 0,
879 pipe->texture_unmap(pipe, transfer);
1845 DBG("using pipe->blit()\n");