HomeSort by relevance Sort by last modified time
    Searched refs:pctx (Results 1 - 25 of 265) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_query.c 29 void fd5_query_context_init(struct pipe_context *pctx)
fd5_gmem.h 32 void fd5_gmem_init(struct pipe_context *pctx);
fd5_query.h 32 void fd5_query_context_init(struct pipe_context *pctx);
fd5_context.c 40 fd5_context_destroy(struct pipe_context *pctx)
42 struct fd5_context *fd5_ctx = fd5_context(fd_context(pctx));
53 fd_context_destroy(pctx);
72 struct pipe_context *pctx; local
77 pctx = &fd5_ctx->base.base;
82 pctx->destroy = fd5_context_destroy;
83 pctx->create_blend_state = fd5_blend_state_create;
84 pctx->create_rasterizer_state = fd5_rasterizer_state_create;
85 pctx->create_depth_stencil_alpha_state = fd5_zsa_state_create;
87 fd5_draw_init(pctx);
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_program.h 34 void fd_prog_init(struct pipe_context *pctx);
35 void fd_prog_fini(struct pipe_context *pctx);
freedreno_program.c 36 fd_fp_state_bind(struct pipe_context *pctx, void *hwcso)
38 struct fd_context *ctx = fd_context(pctx);
44 fd_vp_state_bind(struct pipe_context *pctx, void *hwcso)
46 struct fd_context *ctx = fd_context(pctx);
76 static void * assemble_tgsi(struct pipe_context *pctx,
88 return pctx->create_fs_state(pctx, &cso);
90 return pctx->create_vs_state(pctx, &cso);
94 fd_prog_blit(struct pipe_context *pctx, int rts, bool depth
    [all...]
freedreno_context.c 42 fd_context_flush(struct pipe_context *pctx, struct pipe_fence_handle **fence,
45 struct fd_context *ctx = fd_context(pctx);
65 fd_fence_ref(pctx->screen, fence, ctx->last_fence);
74 fd_emit_string_marker(struct pipe_context *pctx, const char *string, int len)
76 struct fd_context *ctx = fd_context(pctx);
107 fd_context_destroy(struct pipe_context *pctx)
109 struct fd_context *ctx = fd_context(pctx);
120 fd_fence_ref(pctx->screen, &ctx->last_fence, NULL);
122 fd_prog_fini(pctx);
123 fd_hw_query_fini(pctx);
196 struct pipe_context *pctx = &ctx->base; local
233 struct pipe_context *pctx = &ctx->base; local
247 struct pipe_context *pctx; local
    [all...]
freedreno_texture.h 34 void fd_sampler_states_bind(struct pipe_context *pctx,
38 void fd_set_sampler_views(struct pipe_context *pctx,
43 void fd_texture_init(struct pipe_context *pctx);
freedreno_query.c 43 fd_create_query(struct pipe_context *pctx, unsigned query_type, unsigned index)
45 struct fd_context *ctx = fd_context(pctx);
56 fd_destroy_query(struct pipe_context *pctx, struct pipe_query *pq)
59 q->funcs->destroy_query(fd_context(pctx), q);
63 fd_begin_query(struct pipe_context *pctx, struct pipe_query *pq)
66 return q->funcs->begin_query(fd_context(pctx), q);
70 fd_end_query(struct pipe_context *pctx, struct pipe_query *pq)
73 q->funcs->end_query(fd_context(pctx), q);
78 fd_get_query_result(struct pipe_context *pctx, struct pipe_query *pq,
82 return q->funcs->get_query_result(fd_context(pctx), q, wait, result)
    [all...]
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_transfer.h 33 etna_transfer_init(struct pipe_context *pctx);
etnaviv_query.c 35 etna_create_query(struct pipe_context *pctx, unsigned query_type,
38 struct etna_context *ctx = etna_context(pctx);
47 etna_destroy_query(struct pipe_context *pctx, struct pipe_query *pq)
51 q->funcs->destroy_query(etna_context(pctx), q);
55 etna_begin_query(struct pipe_context *pctx, struct pipe_query *pq)
59 return q->funcs->begin_query(etna_context(pctx), q);
63 etna_end_query(struct pipe_context *pctx, struct pipe_query *pq)
67 q->funcs->end_query(etna_context(pctx), q);
72 etna_get_query_result(struct pipe_context *pctx, struct pipe_query *pq,
77 return q->funcs->get_query_result(etna_context(pctx), q, wait, result)
    [all...]
etnaviv_fence.h 34 etna_fence_create(struct pipe_context *pctx);
  /external/mesa3d/src/gallium/drivers/freedreno/a2xx/
fd2_draw.h 36 void fd2_draw_init(struct pipe_context *pctx);
fd2_gmem.h 34 void fd2_gmem_init(struct pipe_context *pctx);
fd2_context.c 41 fd2_context_destroy(struct pipe_context *pctx)
43 fd_context_destroy(pctx);
47 create_solid_vertexbuf(struct pipe_context *pctx)
62 struct pipe_resource *prsc = pipe_buffer_create(pctx->screen,
64 pipe_buffer_write(pctx, prsc, 0,
93 struct pipe_context *pctx; local
98 pctx = &fd2_ctx->base.base;
103 pctx->destroy = fd2_context_destroy;
104 pctx->create_blend_state = fd2_blend_state_create;
105 pctx->create_rasterizer_state = fd2_rasterizer_state_create
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_draw.h 36 void fd3_draw_init(struct pipe_context *pctx);
fd3_gmem.h 34 void fd3_gmem_init(struct pipe_context *pctx);
fd3_query.h 34 void fd3_query_context_init(struct pipe_context *pctx);
fd3_context.c 42 fd3_context_destroy(struct pipe_context *pctx)
44 struct fd3_context *fd3_ctx = fd3_context(fd_context(pctx));
54 fd_context_destroy(pctx);
73 struct pipe_context *pctx; local
78 pctx = &fd3_ctx->base.base;
83 pctx->destroy = fd3_context_destroy;
84 pctx->create_blend_state = fd3_blend_state_create;
85 pctx->create_rasterizer_state = fd3_rasterizer_state_create;
86 pctx->create_depth_stencil_alpha_state = fd3_zsa_state_create;
88 fd3_draw_init(pctx);
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_gmem.h 34 void fd4_gmem_init(struct pipe_context *pctx);
fd4_query.h 34 void fd4_query_context_init(struct pipe_context *pctx);
fd4_context.c 42 fd4_context_destroy(struct pipe_context *pctx)
44 struct fd4_context *fd4_ctx = fd4_context(fd_context(pctx));
54 fd_context_destroy(pctx);
73 struct pipe_context *pctx; local
78 pctx = &fd4_ctx->base.base;
83 pctx->destroy = fd4_context_destroy;
84 pctx->create_blend_state = fd4_blend_state_create;
85 pctx->create_rasterizer_state = fd4_rasterizer_state_create;
86 pctx->create_depth_stencil_alpha_state = fd4_zsa_state_create;
88 fd4_draw_init(pctx);
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmppstanzaparser.h 42 virtual void StartElement(XmlParseContext * pctx,
44 { outer_->IncomingStartElement(pctx, name, atts); }
45 virtual void EndElement(XmlParseContext * pctx,
47 { outer_->IncomingEndElement(pctx, name); }
48 virtual void CharacterData(XmlParseContext * pctx,
50 { outer_->IncomingCharacterData(pctx, text, len); }
51 virtual void Error(XmlParseContext * pctx,
53 { outer_->IncomingError(pctx, errCode); }
60 void IncomingStartElement(XmlParseContext * pctx,
62 void IncomingEndElement(XmlParseContext * pctx,
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
xmlbuilder.h 35 static XmlElement * BuildElement(XmlParseContext * pctx,
37 virtual void StartElement(XmlParseContext * pctx,
39 virtual void EndElement(XmlParseContext * pctx, const char * name);
40 virtual void CharacterData(XmlParseContext * pctx,
42 virtual void Error(XmlParseContext * pctx, XML_Error);
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_context.c 41 vc4_flush(struct pipe_context *pctx)
43 struct vc4_context *vc4 = vc4_context(pctx);
53 vc4_pipe_flush(struct pipe_context *pctx, struct pipe_fence_handle **fence,
56 struct vc4_context *vc4 = vc4_context(pctx);
58 vc4_flush(pctx);
61 struct pipe_screen *screen = pctx->screen;
70 vc4_invalidate_resource(struct pipe_context *pctx, struct pipe_resource *prsc)
72 struct vc4_context *vc4 = vc4_context(pctx);
88 vc4_context_destroy(struct pipe_context *pctx)
90 struct vc4_context *vc4 = vc4_context(pctx);
126 struct pipe_context *pctx = &vc4->base; local
    [all...]

Completed in 192 milliseconds

1 2 3 4 5 6 7 8 91011