Searched refs:pstipple (Results 1 - 25 of 32) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_context.c64 if (softpipe->pstipple.sampler)
65 pipe->delete_sampler_state(pipe, softpipe->pstipple.sampler);
67 pipe_resource_reference(&softpipe->pstipple.texture, NULL);
68 pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, NULL);
87 if (softpipe->quad.pstipple)
88 softpipe->quad.pstipple->destroy( softpipe->quad.pstipple );
272 softpipe->quad.pstipple = sp_quad_polygon_stipple_stage(softpipe);
356 softpipe->pstipple.sampler = util_pstipple_create_sampler(&softpipe->pipe);
H A Dsp_context.h161 } pstipple; member in struct:softpipe_context
168 struct quad_stage *pstipple; member in struct:softpipe_context::__anonf28c6dc70208
H A Dsp_quad_pipe.c68 insert_stage_at_head( sp, sp->quad.pstipple );
H A Dsp_state_derived.c393 pipe_resource_reference(&softpipe->pstipple.texture, tex);
397 softpipe->pstipple.texture);
398 pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, view);
419 softpipe->samplers[PIPE_SHADER_FRAGMENT][unit] = softpipe->pstipple.sampler;
423 unit, 1, &softpipe->pstipple.sampler_view);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_context.c64 if (softpipe->pstipple.sampler)
65 pipe->delete_sampler_state(pipe, softpipe->pstipple.sampler);
67 pipe_resource_reference(&softpipe->pstipple.texture, NULL);
68 pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, NULL);
87 if (softpipe->quad.pstipple)
88 softpipe->quad.pstipple->destroy( softpipe->quad.pstipple );
281 softpipe->quad.pstipple = sp_quad_polygon_stipple_stage(softpipe);
362 softpipe->pstipple.sampler = util_pstipple_create_sampler(&softpipe->pipe);
H A Dsp_context.h161 } pstipple; member in struct:softpipe_context
168 struct quad_stage *pstipple; member in struct:softpipe_context::__anon977557fa0208
H A Dsp_quad_pipe.c68 insert_stage_at_head( sp, sp->quad.pstipple );
H A Dsp_state_derived.c393 pipe_resource_reference(&softpipe->pstipple.texture, tex);
397 softpipe->pstipple.texture);
398 pipe_sampler_view_reference(&softpipe->pstipple.sampler_view, view);
419 softpipe->samplers[PIPE_SHADER_FRAGMENT][unit] = softpipe->pstipple.sampler;
423 unit, 1, 0, false, &softpipe->pstipple.sampler_view);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_validate.c106 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple)
212 && draw->pipeline.pstipple) {
213 draw->pipeline.pstipple->next = next;
214 next = draw->pipeline.pstipple;
H A Ddraw_pipe.c104 if (draw->pipeline.pstipple)
105 draw->pipeline.pstipple->destroy( draw->pipeline.pstipple );
H A Ddraw_pipe_pstipple.c321 return pstip_stage(draw->pipeline.pstipple);
460 draw->pipeline.pstipple = &pstip->stage;
H A Ddraw_private.h131 struct draw_stage *pstipple; member in struct:draw_context::__anon406ac0650108
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/
H A Ddraw_pipe_validate.c109 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple)
215 && draw->pipeline.pstipple) {
216 draw->pipeline.pstipple->next = next;
217 next = draw->pipeline.pstipple;
H A Ddraw_pipe.c108 if (draw->pipeline.pstipple)
109 draw->pipeline.pstipple->destroy( draw->pipeline.pstipple );
H A Ddraw_pipe_pstipple.c332 return pstip_stage(draw->pipeline.pstipple);
485 draw->pipeline.pstipple = &pstip->stage;
H A Ddraw_private.h163 struct draw_stage *pstipple; member in struct:draw_context::__anone553aa980108
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_shader.h82 unsigned pstipple:1; member in struct:svga_compile_key::__anonc870c18e0308
H A Dsvga_state_fs.c213 key->fs.pstipple = (svga->curr.rast->templ.poly_stipple_enable &&
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
H A Dd3d12_context.cpp1121 ctx->pstipple.texture = util_pstipple_create_stipple_texture(pctx, NULL);
1122 if (!ctx->pstipple.texture)
1125 ctx->pstipple.sampler_view = util_pstipple_create_sampler_view(pctx, ctx->pstipple.texture);
1126 if (!ctx->pstipple.sampler_view)
1129 ctx->pstipple.sampler_cso = (struct d3d12_sampler_state *)util_pstipple_create_sampler(pctx);
1130 if (!ctx->pstipple.sampler_cso)
1148 if (!memcmp(ctx->pstipple.pattern, ps->stipple, sizeof(ps->stipple)))
1151 memcpy(ctx->pstipple.pattern, ps->stipple, sizeof(ps->stipple));
1152 ctx->pstipple
[all...]
H A Dd3d12_context.h193 } pstipple; member in struct:d3d12_context
H A Dd3d12_draw.cpp98 view = (struct d3d12_sampler_view*)ctx->pstipple.sampler_view;
151 sampler = ctx->pstipple.sampler_cso;
495 if (ctx->pstipple.enabled)
H A Dd3d12_compiler.cpp701 if (sel_ctx->ctx->pstipple.enabled)
728 key->fs.polygon_stipple = sel_ctx->ctx->pstipple.enabled;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_shader.h86 unsigned pstipple:1; member in struct:svga_compile_key::__anon0ac7a0a10308
H A Dsvga_state_fs.c232 key->fs.pstipple = (svga->curr.rast->templ.poly_stipple_enable &&
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D21.0.3.rst212 - draw: fix pstipple, aaline and aapoint without LLVM

Completed in 28 milliseconds

12