• Home
  • Raw
  • Download

Lines Matching refs:pctx

48 vc5_generic_cso_state_delete(struct pipe_context *pctx, void *hwcso)  in vc5_generic_cso_state_delete()  argument
54 vc5_set_blend_color(struct pipe_context *pctx, in vc5_set_blend_color() argument
57 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_blend_color()
67 vc5_set_stencil_ref(struct pipe_context *pctx, in vc5_set_stencil_ref() argument
70 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_stencil_ref()
76 vc5_set_clip_state(struct pipe_context *pctx, in vc5_set_clip_state() argument
79 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_clip_state()
85 vc5_set_sample_mask(struct pipe_context *pctx, unsigned sample_mask) in vc5_set_sample_mask() argument
87 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_sample_mask()
99 vc5_create_rasterizer_state(struct pipe_context *pctx, in vc5_create_rasterizer_state() argument
125 vc5_create_blend_state(struct pipe_context *pctx, in vc5_create_blend_state() argument
148 vc5_create_depth_stencil_alpha_state(struct pipe_context *pctx, in vc5_create_depth_stencil_alpha_state() argument
220 vc5_set_polygon_stipple(struct pipe_context *pctx, in vc5_set_polygon_stipple() argument
223 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_polygon_stipple()
229 vc5_set_scissor_states(struct pipe_context *pctx, in vc5_set_scissor_states() argument
234 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_scissor_states()
241 vc5_set_viewport_states(struct pipe_context *pctx, in vc5_set_viewport_states() argument
246 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_viewport_states()
252 vc5_set_vertex_buffers(struct pipe_context *pctx, in vc5_set_vertex_buffers() argument
256 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_vertex_buffers()
267 vc5_blend_state_bind(struct pipe_context *pctx, void *hwcso) in vc5_blend_state_bind() argument
269 struct vc5_context *vc5 = vc5_context(pctx); in vc5_blend_state_bind()
275 vc5_rasterizer_state_bind(struct pipe_context *pctx, void *hwcso) in vc5_rasterizer_state_bind() argument
277 struct vc5_context *vc5 = vc5_context(pctx); in vc5_rasterizer_state_bind()
283 vc5_zsa_state_bind(struct pipe_context *pctx, void *hwcso) in vc5_zsa_state_bind() argument
285 struct vc5_context *vc5 = vc5_context(pctx); in vc5_zsa_state_bind()
291 vc5_vertex_state_create(struct pipe_context *pctx, unsigned num_elements, in vc5_vertex_state_create() argument
294 struct vc5_context *vc5 = vc5_context(pctx); in vc5_vertex_state_create()
390 vc5_vertex_state_bind(struct pipe_context *pctx, void *hwcso) in vc5_vertex_state_bind() argument
392 struct vc5_context *vc5 = vc5_context(pctx); in vc5_vertex_state_bind()
398 vc5_set_constant_buffer(struct pipe_context *pctx, uint shader, uint index, in vc5_set_constant_buffer() argument
401 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_constant_buffer()
421 vc5_set_framebuffer_state(struct pipe_context *pctx, in vc5_set_framebuffer_state() argument
424 struct vc5_context *vc5 = vc5_context(pctx); in vc5_set_framebuffer_state()
502 vc5_create_sampler_state(struct pipe_context *pctx, in vc5_create_sampler_state() argument
505 MAYBE_UNUSED struct vc5_context *vc5 = vc5_context(pctx); in vc5_create_sampler_state()
588 vc5_sampler_states_bind(struct pipe_context *pctx, in vc5_sampler_states_bind() argument
592 struct vc5_context *vc5 = vc5_context(pctx); in vc5_sampler_states_bind()
613 vc5_sampler_state_delete(struct pipe_context *pctx, in vc5_sampler_state_delete() argument
644 vc5_create_sampler_view(struct pipe_context *pctx, struct pipe_resource *prsc, argument
647 struct vc5_context *vc5 = vc5_context(pctx);
675 so->base.context = pctx;
799 vc5_sampler_view_destroy(struct pipe_context *pctx, argument
810 vc5_set_sampler_views(struct pipe_context *pctx, argument
815 struct vc5_context *vc5 = vc5_context(pctx);
836 vc5_create_stream_output_target(struct pipe_context *pctx, argument
850 target->context = pctx;
858 vc5_stream_output_target_destroy(struct pipe_context *pctx, argument
866 vc5_set_stream_output_targets(struct pipe_context *pctx, argument
871 struct vc5_context *ctx = vc5_context(pctx);
889 v3dX(state_init)(struct pipe_context *pctx)
891 pctx->set_blend_color = vc5_set_blend_color;
892 pctx->set_stencil_ref = vc5_set_stencil_ref;
893 pctx->set_clip_state = vc5_set_clip_state;
894 pctx->set_sample_mask = vc5_set_sample_mask;
895 pctx->set_constant_buffer = vc5_set_constant_buffer;
896 pctx->set_framebuffer_state = vc5_set_framebuffer_state;
897 pctx->set_polygon_stipple = vc5_set_polygon_stipple;
898 pctx->set_scissor_states = vc5_set_scissor_states;
899 pctx->set_viewport_states = vc5_set_viewport_states;
901 pctx->set_vertex_buffers = vc5_set_vertex_buffers;
903 pctx->create_blend_state = vc5_create_blend_state;
904 pctx->bind_blend_state = vc5_blend_state_bind;
905 pctx->delete_blend_state = vc5_generic_cso_state_delete;
907 pctx->create_rasterizer_state = vc5_create_rasterizer_state;
908 pctx->bind_rasterizer_state = vc5_rasterizer_state_bind;
909 pctx->delete_rasterizer_state = vc5_generic_cso_state_delete;
911 pctx->create_depth_stencil_alpha_state = vc5_create_depth_stencil_alpha_state;
912 pctx->bind_depth_stencil_alpha_state = vc5_zsa_state_bind;
913 pctx->delete_depth_stencil_alpha_state = vc5_generic_cso_state_delete;
915 pctx->create_vertex_elements_state = vc5_vertex_state_create;
916 pctx->delete_vertex_elements_state = vc5_generic_cso_state_delete;
917 pctx->bind_vertex_elements_state = vc5_vertex_state_bind;
919 pctx->create_sampler_state = vc5_create_sampler_state;
920 pctx->delete_sampler_state = vc5_sampler_state_delete;
921 pctx->bind_sampler_states = vc5_sampler_states_bind;
923 pctx->create_sampler_view = vc5_create_sampler_view;
924 pctx->sampler_view_destroy = vc5_sampler_view_destroy;
925 pctx->set_sampler_views = vc5_set_sampler_views;
927 pctx->create_stream_output_target = vc5_create_stream_output_target;
928 pctx->stream_output_target_destroy = vc5_stream_output_target_destroy;
929 pctx->set_stream_output_targets = vc5_set_stream_output_targets;