• Home
  • Raw
  • Download

Lines Matching refs:pctx

44 vc4_generic_cso_state_delete(struct pipe_context *pctx, void *hwcso)  in vc4_generic_cso_state_delete()  argument
50 vc4_set_blend_color(struct pipe_context *pctx, in vc4_set_blend_color() argument
53 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_blend_color()
61 vc4_set_stencil_ref(struct pipe_context *pctx, in vc4_set_stencil_ref() argument
64 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_stencil_ref()
70 vc4_set_clip_state(struct pipe_context *pctx, in vc4_set_clip_state() argument
73 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_clip_state()
79 vc4_set_sample_mask(struct pipe_context *pctx, unsigned sample_mask) in vc4_set_sample_mask() argument
81 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_sample_mask()
93 vc4_create_rasterizer_state(struct pipe_context *pctx, in vc4_create_rasterizer_state() argument
132 vc4_create_blend_state(struct pipe_context *pctx, in vc4_create_blend_state() argument
183 vc4_create_depth_stencil_alpha_state(struct pipe_context *pctx, in vc4_create_depth_stencil_alpha_state() argument
258 vc4_set_polygon_stipple(struct pipe_context *pctx, in vc4_set_polygon_stipple() argument
261 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_polygon_stipple()
267 vc4_set_scissor_states(struct pipe_context *pctx, in vc4_set_scissor_states() argument
272 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_scissor_states()
279 vc4_set_viewport_states(struct pipe_context *pctx, in vc4_set_viewport_states() argument
284 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_viewport_states()
290 vc4_set_vertex_buffers(struct pipe_context *pctx, in vc4_set_vertex_buffers() argument
294 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_vertex_buffers()
305 vc4_set_index_buffer(struct pipe_context *pctx, in vc4_set_index_buffer() argument
308 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_index_buffer()
323 vc4_blend_state_bind(struct pipe_context *pctx, void *hwcso) in vc4_blend_state_bind() argument
325 struct vc4_context *vc4 = vc4_context(pctx); in vc4_blend_state_bind()
331 vc4_rasterizer_state_bind(struct pipe_context *pctx, void *hwcso) in vc4_rasterizer_state_bind() argument
333 struct vc4_context *vc4 = vc4_context(pctx); in vc4_rasterizer_state_bind()
346 vc4_zsa_state_bind(struct pipe_context *pctx, void *hwcso) in vc4_zsa_state_bind() argument
348 struct vc4_context *vc4 = vc4_context(pctx); in vc4_zsa_state_bind()
354 vc4_vertex_state_create(struct pipe_context *pctx, unsigned num_elements, in vc4_vertex_state_create() argument
369 vc4_vertex_state_bind(struct pipe_context *pctx, void *hwcso) in vc4_vertex_state_bind() argument
371 struct vc4_context *vc4 = vc4_context(pctx); in vc4_vertex_state_bind()
377 vc4_set_constant_buffer(struct pipe_context *pctx, uint shader, uint index, in vc4_set_constant_buffer() argument
380 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_constant_buffer()
405 vc4_set_framebuffer_state(struct pipe_context *pctx, in vc4_set_framebuffer_state() argument
408 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_framebuffer_state()
488 vc4_create_sampler_state(struct pipe_context *pctx, in vc4_create_sampler_state() argument
528 vc4_sampler_states_bind(struct pipe_context *pctx, in vc4_sampler_states_bind() argument
532 struct vc4_context *vc4 = vc4_context(pctx); in vc4_sampler_states_bind()
553 vc4_create_sampler_view(struct pipe_context *pctx, struct pipe_resource *prsc, in vc4_create_sampler_view() argument
585 prsc = vc4_resource_create(pctx->screen, &tmpl); in vc4_create_sampler_view()
602 so->base.context = pctx; in vc4_create_sampler_view()
625 vc4_sampler_view_destroy(struct pipe_context *pctx, in vc4_sampler_view_destroy() argument
633 vc4_set_sampler_views(struct pipe_context *pctx, in vc4_set_sampler_views() argument
638 struct vc4_context *vc4 = vc4_context(pctx); in vc4_set_sampler_views()
659 vc4_state_init(struct pipe_context *pctx) in vc4_state_init() argument
661 pctx->set_blend_color = vc4_set_blend_color; in vc4_state_init()
662 pctx->set_stencil_ref = vc4_set_stencil_ref; in vc4_state_init()
663 pctx->set_clip_state = vc4_set_clip_state; in vc4_state_init()
664 pctx->set_sample_mask = vc4_set_sample_mask; in vc4_state_init()
665 pctx->set_constant_buffer = vc4_set_constant_buffer; in vc4_state_init()
666 pctx->set_framebuffer_state = vc4_set_framebuffer_state; in vc4_state_init()
667 pctx->set_polygon_stipple = vc4_set_polygon_stipple; in vc4_state_init()
668 pctx->set_scissor_states = vc4_set_scissor_states; in vc4_state_init()
669 pctx->set_viewport_states = vc4_set_viewport_states; in vc4_state_init()
671 pctx->set_vertex_buffers = vc4_set_vertex_buffers; in vc4_state_init()
672 pctx->set_index_buffer = vc4_set_index_buffer; in vc4_state_init()
674 pctx->create_blend_state = vc4_create_blend_state; in vc4_state_init()
675 pctx->bind_blend_state = vc4_blend_state_bind; in vc4_state_init()
676 pctx->delete_blend_state = vc4_generic_cso_state_delete; in vc4_state_init()
678 pctx->create_rasterizer_state = vc4_create_rasterizer_state; in vc4_state_init()
679 pctx->bind_rasterizer_state = vc4_rasterizer_state_bind; in vc4_state_init()
680 pctx->delete_rasterizer_state = vc4_generic_cso_state_delete; in vc4_state_init()
682 pctx->create_depth_stencil_alpha_state = vc4_create_depth_stencil_alpha_state; in vc4_state_init()
683 pctx->bind_depth_stencil_alpha_state = vc4_zsa_state_bind; in vc4_state_init()
684 pctx->delete_depth_stencil_alpha_state = vc4_generic_cso_state_delete; in vc4_state_init()
686 pctx->create_vertex_elements_state = vc4_vertex_state_create; in vc4_state_init()
687 pctx->delete_vertex_elements_state = vc4_generic_cso_state_delete; in vc4_state_init()
688 pctx->bind_vertex_elements_state = vc4_vertex_state_bind; in vc4_state_init()
690 pctx->create_sampler_state = vc4_create_sampler_state; in vc4_state_init()
691 pctx->delete_sampler_state = vc4_generic_cso_state_delete; in vc4_state_init()
692 pctx->bind_sampler_states = vc4_sampler_states_bind; in vc4_state_init()
694 pctx->create_sampler_view = vc4_create_sampler_view; in vc4_state_init()
695 pctx->sampler_view_destroy = vc4_sampler_view_destroy; in vc4_state_init()
696 pctx->set_sampler_views = vc4_set_sampler_views; in vc4_state_init()