HomeSort by: relevance | last modified time | path
    Searched refs:pstipple (Results 1 - 25 of 28) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_context.c 64 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);
sp_context.h 161 } pstipple; member in struct:softpipe_context
168 struct quad_stage *pstipple; member in struct:softpipe_context::__anon1630
sp_quad_pipe.c 68 insert_stage_at_head( sp, sp->quad.pstipple );
sp_state_derived.c 393 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/drivers/softpipe/
sp_context.c 64 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);
sp_context.h 161 } pstipple; member in struct:softpipe_context
168 struct quad_stage *pstipple; member in struct:softpipe_context::__anon4069
sp_quad_pipe.c 68 insert_stage_at_head( sp, sp->quad.pstipple );
sp_state_derived.c 393 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/auxiliary/draw/
draw_pipe_validate.c 109 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple)
215 && draw->pipeline.pstipple) {
216 draw->pipeline.pstipple->next = next;
217 next = draw->pipeline.pstipple;
draw_pipe.c 108 if (draw->pipeline.pstipple)
109 draw->pipeline.pstipple->destroy( draw->pipeline.pstipple );
draw_pipe_pstipple.c 332 return pstip_stage(draw->pipeline.pstipple);
485 draw->pipeline.pstipple = &pstip->stage;
draw_private.h 163 struct draw_stage *pstipple; member in struct:draw_context::__anon1020
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/
draw_pipe_validate.c 106 if (rasterizer->poly_stipple_enable && draw->pipeline.pstipple)
212 && draw->pipeline.pstipple) {
213 draw->pipeline.pstipple->next = next;
214 next = draw->pipeline.pstipple;
draw_pipe.c 104 if (draw->pipeline.pstipple)
105 draw->pipeline.pstipple->destroy( draw->pipeline.pstipple );
draw_pipe_pstipple.c 321 return pstip_stage(draw->pipeline.pstipple);
460 draw->pipeline.pstipple = &pstip->stage;
draw_private.h 131 struct draw_stage *pstipple; member in struct:draw_context::__anon3536
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
svga_shader.h 82 unsigned pstipple:1; member in struct:svga_compile_key::__anon4431
svga_state_fs.c 213 key->fs.pstipple = (svga->curr.rast->templ.poly_stipple_enable &&
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/
d3d12_context.cpp 1121 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.enabled = !!memcmp(ps->stipple, undef, sizeof(ps->stipple)) &
    [all...]
d3d12_context.h 193 } pstipple; member in struct:d3d12_context
d3d12_draw.cpp 98 view = (struct d3d12_sampler_view*)ctx->pstipple.sampler_view;
151 sampler = ctx->pstipple.sampler_cso;
495 if (ctx->pstipple.enabled)
d3d12_compiler.cpp 701 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/
svga_shader.h 86 unsigned pstipple:1; member in struct:svga_compile_key::__anon2006
svga_state_fs.c 232 key->fs.pstipple = (svga->curr.rast->templ.poly_stipple_enable &&
svga_tgsi_insn.c 3694 if (emit->unit == PIPE_SHADER_FRAGMENT && emit->key.fs.pstipple) {

Completed in 27 milliseconds

1 2