Home
last modified time | relevance | path

Searched refs:softpipe (Results 1 – 25 of 101) sorted by relevance

12345

/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_context.c59 struct softpipe_context *softpipe = softpipe_context( pipe ); in softpipe_destroy() local
62 if (softpipe->blitter) { in softpipe_destroy()
63 util_blitter_destroy(softpipe->blitter); in softpipe_destroy()
66 if (softpipe->draw) in softpipe_destroy()
67 draw_destroy( softpipe->draw ); in softpipe_destroy()
69 if (softpipe->quad.shade) in softpipe_destroy()
70 softpipe->quad.shade->destroy( softpipe->quad.shade ); in softpipe_destroy()
72 if (softpipe->quad.depth_test) in softpipe_destroy()
73 softpipe->quad.depth_test->destroy( softpipe->quad.depth_test ); in softpipe_destroy()
75 if (softpipe->quad.blend) in softpipe_destroy()
[all …]
Dsp_state_derived.c48 invalidate_vertex_layout(struct softpipe_context *softpipe) in invalidate_vertex_layout() argument
50 softpipe->setup_info.valid = 0; in invalidate_vertex_layout()
62 softpipe_compute_vertex_info(struct softpipe_context *softpipe) in softpipe_compute_vertex_info() argument
64 struct sp_setup_info *sinfo = &softpipe->setup_info; in softpipe_compute_vertex_info()
67 const struct tgsi_shader_info *fsInfo = &softpipe->fs_variant->info; in softpipe_compute_vertex_info()
68 struct vertex_info *vinfo = &softpipe->vertex_info; in softpipe_compute_vertex_info()
87 softpipe->viewport_index_slot = -1; in softpipe_compute_vertex_info()
88 softpipe->layer_slot = -1; in softpipe_compute_vertex_info()
89 softpipe->psize_slot = -1; in softpipe_compute_vertex_info()
96 vs_index = draw_find_shader_output(softpipe->draw, in softpipe_compute_vertex_info()
[all …]
Dsp_state_shader.c54 create_fs_variant(struct softpipe_context *softpipe, in create_fs_variant() argument
62 var = softpipe_create_fs_variant_exec(softpipe); in create_fs_variant()
74 var->draw_shader = draw_create_fragment_shader(softpipe->draw, in create_fs_variant()
112 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_shader_db() local
116 …util_debug_message(&softpipe->debug, SHADER_INFO, "%s shader: %d inst, %d loops, %d temps, %d cons… in softpipe_shader_db()
156 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_create_fs_state() local
163 state->draw_shader = draw_create_fragment_shader(softpipe->draw, in softpipe_create_fs_state()
178 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_fs_state() local
181 if (softpipe->fs == fs) in softpipe_bind_fs_state()
184 draw_flush(softpipe->draw); in softpipe_bind_fs_state()
[all …]
Dsp_query.c92 struct softpipe_context *softpipe = softpipe_context( pipe ); in softpipe_begin_query() local
99 sq->start = softpipe->occlusion_count; in softpipe_begin_query()
105 … sq->so[sq->index].num_primitives_written = softpipe->so_stats[sq->index].num_primitives_written; in softpipe_begin_query()
106 …sq->so[sq->index].primitives_storage_needed = softpipe->so_stats[sq->index].primitives_storage_nee… in softpipe_begin_query()
109 … sq->so[sq->index].num_primitives_written = softpipe->so_stats[sq->index].num_primitives_written; in softpipe_begin_query()
110 …sq->so[sq->index].primitives_storage_needed = softpipe->so_stats[sq->index].primitives_storage_nee… in softpipe_begin_query()
114 sq->so[i].num_primitives_written = softpipe->so_stats[i].num_primitives_written; in softpipe_begin_query()
115 sq->so[i].primitives_storage_needed = softpipe->so_stats[i].primitives_storage_needed; in softpipe_begin_query()
119 … sq->so[sq->index].num_primitives_written = softpipe->so_stats[sq->index].num_primitives_written; in softpipe_begin_query()
122 …sq->so[sq->index].primitives_storage_needed = softpipe->so_stats[sq->index].primitives_storage_nee… in softpipe_begin_query()
[all …]
Dsp_flush.c51 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_flush() local
54 draw_flush(softpipe->draw); in softpipe_flush()
59 for (sh = 0; sh < ARRAY_SIZE(softpipe->tex_cache); sh++) { in softpipe_flush()
60 for (i = 0; i < softpipe->num_sampler_views[sh]; i++) { in softpipe_flush()
61 sp_flush_tex_tile_cache(softpipe->tex_cache[sh][i]); in softpipe_flush()
71 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) in softpipe_flush()
72 if (softpipe->cbuf_cache[i]) in softpipe_flush()
73 sp_flush_tile_cache(softpipe->cbuf_cache[i]); in softpipe_flush()
75 if (softpipe->zsbuf_cache) in softpipe_flush()
76 sp_flush_tile_cache(softpipe->zsbuf_cache); in softpipe_flush()
[all …]
Dsp_quad_fs.c65 struct softpipe_context *softpipe = qs->softpipe; in shade_quad() local
66 struct tgsi_exec_machine *machine = softpipe->fs_machine; in shade_quad()
68 if (softpipe->active_statistics_queries) { in shade_quad()
69 softpipe->pipeline_statistics.ps_invocations += in shade_quad()
74 machine->flatshade_color = softpipe->rasterizer->flatshade ? TRUE : FALSE; in shade_quad()
75 return softpipe->fs_variant->run( softpipe->fs_variant, machine, quad, softpipe->early_depth ); in shade_quad()
83 struct softpipe_context *softpipe = qs->softpipe; in coverage_quad() local
87 for (cbuf = 0; cbuf < softpipe->framebuffer.nr_cbufs; cbuf++) { in coverage_quad()
108 struct softpipe_context *softpipe = qs->softpipe; in shade_quads() local
109 struct tgsi_exec_machine *machine = softpipe->fs_machine; in shade_quads()
[all …]
Dsp_state_blend.c50 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_blend_state() local
52 draw_flush(softpipe->draw); in softpipe_bind_blend_state()
54 softpipe->blend = (struct pipe_blend_state *)blend; in softpipe_bind_blend_state()
56 softpipe->dirty |= SP_NEW_BLEND; in softpipe_bind_blend_state()
72 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_blend_color() local
75 draw_flush(softpipe->draw); in softpipe_set_blend_color()
77 softpipe->blend_color = *blend_color; in softpipe_set_blend_color()
81 softpipe->blend_color_clamped.color[i] = in softpipe_set_blend_color()
84 softpipe->dirty |= SP_NEW_BLEND; in softpipe_set_blend_color()
100 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_depth_stencil_state() local
[all …]
Dsp_quad_pipe.h45 struct softpipe_context *softpipe; member
58 struct quad_stage *sp_quad_earlyz_stage( struct softpipe_context *softpipe );
59 struct quad_stage *sp_quad_shade_stage( struct softpipe_context *softpipe );
60 struct quad_stage *sp_quad_alpha_test_stage( struct softpipe_context *softpipe );
61 struct quad_stage *sp_quad_stencil_test_stage( struct softpipe_context *softpipe );
62 struct quad_stage *sp_quad_depth_test_stage( struct softpipe_context *softpipe );
63 struct quad_stage *sp_quad_occlusion_stage( struct softpipe_context *softpipe );
64 struct quad_stage *sp_quad_coverage_stage( struct softpipe_context *softpipe );
65 struct quad_stage *sp_quad_blend_stage( struct softpipe_context *softpipe );
66 struct quad_stage *sp_quad_colormask_stage( struct softpipe_context *softpipe );
[all …]
Dsp_state_clip.c39 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_clip_state() local
42 draw_set_clip_state(softpipe->draw, clip); in softpipe_set_clip_state()
52 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_viewport_states() local
55 draw_set_viewport_states(softpipe->draw, start_slot, num_viewports, in softpipe_set_viewport_states()
58 memcpy(softpipe->viewports + start_slot, viewports, in softpipe_set_viewport_states()
60 softpipe->dirty |= SP_NEW_VIEWPORT; in softpipe_set_viewport_states()
70 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_scissor_states() local
72 draw_flush(softpipe->draw); in softpipe_set_scissor_states()
77 memcpy(softpipe->scissors + start_slot, scissors, in softpipe_set_scissor_states()
79 softpipe->dirty |= SP_NEW_SCISSOR; in softpipe_set_scissor_states()
[all …]
Dsp_state_image.c36 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_shader_images() local
39 assert(start + num <= ARRAY_SIZE(softpipe->sampler_views[shader])); in softpipe_set_shader_images()
46 …pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, images[i].resource); in softpipe_set_shader_images()
47 softpipe->tgsi.image[shader]->sp_iview[idx] = images[i]; in softpipe_set_shader_images()
50 pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, NULL); in softpipe_set_shader_images()
51 memset(&softpipe->tgsi.image[shader]->sp_iview[idx], 0, sizeof(struct pipe_image_view)); in softpipe_set_shader_images()
58 pipe_resource_reference(&softpipe->tgsi.image[shader]->sp_iview[idx].resource, NULL); in softpipe_set_shader_images()
59 memset(&softpipe->tgsi.image[shader]->sp_iview[idx], 0, sizeof(struct pipe_image_view)); in softpipe_set_shader_images()
70 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_shader_buffers() local
73 assert(start + num <= ARRAY_SIZE(softpipe->buffers[shader])); in softpipe_set_shader_buffers()
[all …]
Dsp_state_sampler.c57 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_sampler_states() local
61 assert(start + num <= ARRAY_SIZE(softpipe->samplers[shader])); in softpipe_bind_sampler_states()
63 draw_flush(softpipe->draw); in softpipe_bind_sampler_states()
67 softpipe->samplers[shader][start + i] = samplers[i]; in softpipe_bind_sampler_states()
72 unsigned j = MAX2(softpipe->num_samplers[shader], start + num); in softpipe_bind_sampler_states()
73 while (j > 0 && softpipe->samplers[shader][j - 1] == NULL) in softpipe_bind_sampler_states()
75 softpipe->num_samplers[shader] = j; in softpipe_bind_sampler_states()
79 draw_set_samplers(softpipe->draw, in softpipe_bind_sampler_states()
81 softpipe->samplers[shader], in softpipe_bind_sampler_states()
82 softpipe->num_samplers[shader]); in softpipe_bind_sampler_states()
[all …]
Dsp_quad_depth_test.c541 struct softpipe_context *softpipe = qs->softpipe; in depth_test_quad() local
560 switch (softpipe->depth_stencil->depth_func) { in depth_test_quad()
600 if (softpipe->depth_stencil->depth_writemask) { in depth_test_quad()
622 struct softpipe_context *softpipe = qs->softpipe; in depth_stencil_test_quad() local
627 if (!softpipe->depth_stencil->stencil[1].enabled) { in depth_stencil_test_quad()
637 func = softpipe->depth_stencil->stencil[face].func; in depth_stencil_test_quad()
638 failOp = softpipe->depth_stencil->stencil[face].fail_op; in depth_stencil_test_quad()
639 zFailOp = softpipe->depth_stencil->stencil[face].zfail_op; in depth_stencil_test_quad()
640 zPassOp = softpipe->depth_stencil->stencil[face].zpass_op; in depth_stencil_test_quad()
641 ref = softpipe->stencil_ref.ref_value[face]; in depth_stencil_test_quad()
[all …]
Dsp_state_vertex.c62 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_vertex_elements_state() local
65 softpipe->velems = sp_velems; in softpipe_bind_vertex_elements_state()
67 softpipe->dirty |= SP_NEW_VERTEX; in softpipe_bind_vertex_elements_state()
70 draw_set_vertex_elements(softpipe->draw, sp_velems->count, sp_velems->velem); in softpipe_bind_vertex_elements_state()
88 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_vertex_buffers() local
92 util_set_vertex_buffers_count(softpipe->vertex_buffer, in softpipe_set_vertex_buffers()
93 &softpipe->num_vertex_buffers, in softpipe_set_vertex_buffers()
98 softpipe->dirty |= SP_NEW_VERTEX; in softpipe_set_vertex_buffers()
100 draw_set_vertex_buffers(softpipe->draw, start_slot, count, in softpipe_set_vertex_buffers()
Dsp_state_so.c68 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_set_so_targets() local
72 …pipe_so_target_reference((struct pipe_stream_output_target **)&softpipe->so_targets[i], targets[i]… in softpipe_set_so_targets()
76 softpipe->so_targets[i]->mapping = buf; in softpipe_set_so_targets()
80 for (; i < softpipe->num_so_targets; i++) { in softpipe_set_so_targets()
81 pipe_so_target_reference((struct pipe_stream_output_target **)&softpipe->so_targets[i], NULL); in softpipe_set_so_targets()
84 softpipe->num_so_targets = num_targets; in softpipe_set_so_targets()
86 draw_set_mapped_so_targets(softpipe->draw, softpipe->num_so_targets, in softpipe_set_so_targets()
87 softpipe->so_targets); in softpipe_set_so_targets()
Dsp_clear.c55 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_clear() local
56 struct pipe_surface *zsbuf = softpipe->framebuffer.zsbuf; in softpipe_clear()
64 if (!softpipe_check_render_cond(softpipe)) in softpipe_clear()
68 softpipe_update_derived(softpipe, PIPE_PRIM_TRIANGLES); /* not needed?? */ in softpipe_clear()
72 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) { in softpipe_clear()
74 sp_tile_cache_clear(softpipe->cbuf_cache[i], color, 0); in softpipe_clear()
89 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv); in softpipe_clear()
92 softpipe->dirty_render_cache = TRUE; in softpipe_clear()
Dsp_setup.c76 struct softpipe_context *softpipe; member
132 const struct pipe_scissor_state *cliprect = &setup->softpipe->cliprect[viewport_index]; in quad_clip()
166 struct softpipe_context *sp = setup->softpipe; in clip_emit_quad()
207 struct quad_stage *pipe = setup->softpipe->quad.first; in flush_spans()
295 if (setup->softpipe->rasterizer->flatshade_first) in setup_sort_vertices()
385 (setup->softpipe->rasterizer->front_ccw)); in setup_sort_vertices()
508 const struct tgsi_shader_info *fsInfo = &setup->softpipe->fs_variant->info; in setup_fragcoord_coeff()
520 (origin_lower_left ? setup->softpipe->framebuffer.height-1 : 0) in setup_fragcoord_coeff()
543 struct softpipe_context *softpipe = setup->softpipe; in setup_tri_coefficients() local
544 const struct tgsi_shader_info *fsInfo = &setup->softpipe->fs_variant->info; in setup_tri_coefficients()
[all …]
Dsp_prim_vbuf.c60 struct softpipe_context *softpipe; member
84 return softpipe_get_vbuf_vertex_info(cvbr->softpipe); in sp_vbuf_get_vertex_info()
143 cvbr->softpipe->reduced_prim = u_reduced_prim(prim); in sp_vbuf_set_primitive()
163 struct softpipe_context *softpipe = cvbr->softpipe; in sp_vbuf_draw_elements() local
164 const unsigned stride = softpipe->vertex_info.size * sizeof(float); in sp_vbuf_draw_elements()
167 const boolean flatshade_first = softpipe->rasterizer->flatshade_first; in sp_vbuf_draw_elements()
359 struct softpipe_context *softpipe = cvbr->softpipe; in sp_vbuf_draw_arrays() local
361 const unsigned stride = softpipe->vertex_info.size * sizeof(float); in sp_vbuf_draw_arrays()
364 const boolean flatshade_first = softpipe->rasterizer->flatshade_first; in sp_vbuf_draw_arrays()
603 struct softpipe_context *softpipe = cvbr->softpipe; in sp_vbuf_so_info() local
[all …]
Dsp_quad_blend.c154 struct softpipe_context *softpipe = qs->softpipe; in logicop_quad() local
177 switch (softpipe->blend->logicop_func) { in logicop_quad()
273 struct softpipe_context *softpipe = qs->softpipe; in blend_quad() local
280 switch (softpipe->blend->rt[blend_index].rgb_src_factor) { in blend_quad()
451 switch (softpipe->blend->rt[blend_index].alpha_src_factor) { in blend_quad()
543 switch (softpipe->blend->rt[blend_index].rgb_dst_factor) { in blend_quad()
703 switch (softpipe->blend->rt[blend_index].alpha_dst_factor) { in blend_quad()
780 switch (softpipe->blend->rt[blend_index].rgb_func) { in blend_quad()
813 switch (softpipe->blend->rt[blend_index].alpha_func) { in blend_quad()
925 struct softpipe_context *softpipe = qs->softpipe; in blend_fallback() local
[all …]
Dsp_state_rasterizer.c48 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_bind_rasterizer_state() local
50 if (softpipe->rasterizer == rasterizer) in softpipe_bind_rasterizer_state()
54 draw_set_rasterizer_state(softpipe->draw, rasterizer, rasterizer); in softpipe_bind_rasterizer_state()
56 softpipe->rasterizer = rasterizer; in softpipe_bind_rasterizer_state()
58 softpipe->dirty |= SP_NEW_RASTERIZER; in softpipe_bind_rasterizer_state()
Dsp_compute.c169 struct softpipe_context *softpipe = softpipe_context(context); in softpipe_launch_grid() local
170 struct sp_compute_shader *cs = softpipe->cs; in softpipe_launch_grid()
179 softpipe_update_compute_samplers(softpipe); in softpipe_launch_grid()
211 (struct tgsi_sampler *)softpipe->tgsi.sampler[PIPE_SHADER_COMPUTE], in softpipe_launch_grid()
212 (struct tgsi_image *)softpipe->tgsi.image[PIPE_SHADER_COMPUTE], in softpipe_launch_grid()
213 (struct tgsi_buffer *)softpipe->tgsi.buffer[PIPE_SHADER_COMPUTE]); in softpipe_launch_grid()
215 softpipe->mapped_constants[PIPE_SHADER_COMPUTE], in softpipe_launch_grid()
216 softpipe->const_buffer_size[PIPE_SHADER_COMPUTE]); in softpipe_launch_grid()
230 if (softpipe->active_statistics_queries) { in softpipe_launch_grid()
231 softpipe->pipeline_statistics.cs_invocations += in softpipe_launch_grid()
Dsp_state.h170 softpipe_update_derived(struct softpipe_context *softpipe, unsigned prim);
198 softpipe_get_vbuf_vertex_info(struct softpipe_context *softpipe);
202 softpipe_find_fs_variant(struct softpipe_context *softpipe,
227 softpipe_update_compute_samplers(struct softpipe_context *softpipe);
Dsp_surface.c103 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_clear_render_target() local
105 if (render_condition_enabled && !softpipe_check_render_cond(softpipe)) in softpipe_clear_render_target()
123 struct softpipe_context *softpipe = softpipe_context(pipe); in softpipe_clear_depth_stencil() local
125 if (render_condition_enabled && !softpipe_check_render_cond(softpipe)) in softpipe_clear_depth_stencil()
/third_party/mesa3d/docs/
Dfeatures.txt39 GL 3.0, GLSL 1.30 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, vi…
66 …sing DONE (freedreno/a5xx+, freedreno (*), llvmpipe (*), softpipe (*)))
69 (*) freedreno (a2xx-a4xx), llvmpipe, and softpipe have fake Multisample anti-aliasing support
72 GL 3.1, GLSL 1.40 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, vi…
85 GL 3.2, GLSL 1.50 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, vi…
100 GL 3.3, GLSL 3.30 --- all DONE: freedreno, i965, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, vi…
116 …GL_ARB_draw_buffers_blend DONE (freedreno, i965/gen6+, nv50, softpipe,…
117 GL_ARB_draw_indirect DONE (freedreno, i965/gen7+, softpipe, v3d)
119 - 'precise' qualifier DONE (softpipe)
120 - Dynamically uniform sampler array indices DONE (softpipe)
[all …]
/third_party/mesa3d/docs/relnotes/
D12.0.0.rst31 - GL_ARB_compute_shader on nvc0, radeonsi, softpipe
32 - GL_ARB_cull_distance on i965/gen6+, nv50, nvc0, llvmpipe, softpipe
33 - GL_ARB_framebuffer_no_attachments on nvc0, r600, radeonsi, softpipe
37 - GL_ARB_shader_atomic_counters on radeonsi, softpipe
38 - GL_ARB_shader_atomic_counter_ops on nvc0, radeonsi, softpipe
39 - GL_ARB_shader_image_load_store on nvc0, radeonsi, softpipe
40 - GL_ARB_shader_image_size on nvc0, radeonsi, softpipe
41 - GL_ARB_shader_storage_buffer_objects on radeonsi, softpipe
130 [llvmpipe] [softpipe] piglit read-front regression
132 [softpipe] piglit glx-copy-sub-buffer regression
[all …]
D10.6.0.rst35 - GL_ARB_gpu_shader_fp64 on nvc0, softpipe
39 softpipe
41 - GL_ARB_texture_stencil8 on nv50, nvc0, r600, radeonsi, softpipe
42 - GL_ARB_texture_view on llvmpipe, softpipe
44 - GL_ARB_vertex_attrib_64bit on nvc0, softpipe
84 [softpipe] piglit fp-long-alu regression
218 [softpipe] piglit glsl-1.50 generate-zero-primitives regression
273 [softpipe] piglit copy-pixels regreession
301 [softpipe] piglit depthstencil-default_fb-drawpixels-32f_24_8_rev

12345