Home
last modified time | relevance | path

Searched refs:fill_front (Results 1 – 25 of 44) sorted by relevance

12

/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_clip.c128 GLuint fill_front = BRW_CLIP_FILL_MODE_CULL; in brw_upload_clip_prog() local
137 fill_front = BRW_CLIP_FILL_MODE_FILL; in brw_upload_clip_prog()
141 fill_front = BRW_CLIP_FILL_MODE_LINE; in brw_upload_clip_prog()
145 fill_front = BRW_CLIP_FILL_MODE_POINT; in brw_upload_clip_prog()
186 key.fill_ccw = fill_front; in brw_upload_clip_prog()
194 key.fill_cw = fill_front; in brw_upload_clip_prog()
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_pipe_rasterizer.c109 unsigned fill_mode = translate_fill_mode(rast->templ.fill_front); in define_rasterizer_object()
126 if (rast->templ.fill_front != rast->templ.fill_back) { in define_rasterizer_object()
263 int fill_front = templ->fill_front; in svga_create_rasterizer_state() local
266 boolean offset_front = util_get_offset(templ, fill_front); in svga_create_rasterizer_state()
283 fill = fill_front; in svga_create_rasterizer_state()
287 if (fill_front != fill_back || offset_front != offset_back) { in svga_create_rasterizer_state()
297 fill = fill_front; in svga_create_rasterizer_state()
Dsvga_draw_arrays.c225 if (svga->curr.rast->templ.fill_front != in svga_hwtnl_draw_arrays()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_atom_rasterizer.c133 raster->fill_front = PIPE_POLYGON_MODE_LINE; in st_update_rasterizer()
137 raster->fill_front = translate_fill(ctx->Polygon.FrontMode); in st_update_rasterizer()
144 raster->fill_front = raster->fill_back; in st_update_rasterizer()
148 raster->fill_back = raster->fill_front; in st_update_rasterizer()
292 if (raster->fill_front != PIPE_POLYGON_MODE_FILL) in st_update_rasterizer()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_rasterizer.c41 if (so->fill_front != so->fill_back) in etna_rasterizer_state_create()
52 translate_polygon_mode(so->fill_front) | in etna_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
Dfd5_rasterizer.c70 fd_polygon_mode(cso->fill_front)) | in fd5_rasterizer_state_create()
73 if (cso->fill_front != PIPE_POLYGON_MODE_FILL || in fd5_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/
Dfd3_rasterizer.c79 fd_polygon_mode(cso->fill_front)) | in fd3_rasterizer_state_create()
83 if (cso->fill_front != PIPE_POLYGON_MODE_FILL || in fd3_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_rasterizer.c79 fd_polygon_mode(cso->fill_front)) | in fd4_rasterizer_state_create()
83 if (cso->fill_front != PIPE_POLYGON_MODE_FILL || in fd4_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_rasterizer.c80 A2XX_PA_SU_SC_MODE_CNTL_FRONT_PTYPE(fd_polygon_mode(cso->fill_front)) | in fd2_rasterizer_state_create()
96 if (cso->fill_front != PIPE_POLYGON_MODE_FILL || in fd2_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_rasterizer.c82 switch (cso->fill_front) { in __fd6_setup_rasterizer_stateobj()
90 assert(cso->fill_front == PIPE_POLYGON_MODE_FILL); in __fd6_setup_rasterizer_stateobj()
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_unfilled.c217 unfilled->mode[0] = rast->front_ccw ? rast->fill_front : rast->fill_back; in unfilled_first_tri()
218 unfilled->mode[1] = rast->front_ccw ? rast->fill_back : rast->fill_front; in unfilled_first_tri()
258 (rast->fill_front != PIPE_POLYGON_MODE_FILL || in draw_unfilled_prepare_outputs()
Ddraw_pipe_offset.c152 unsigned fill_mode = rast->fill_front; in offset_first_tri()
155 if (rast->fill_back != rast->fill_front) { in offset_first_tri()
Ddraw_pipe_validate.c113 if (rasterizer->fill_front != PIPE_POLYGON_MODE_FILL || in draw_need_pipeline()
220 if (rast->fill_front != PIPE_POLYGON_MODE_FILL || in validate_pipeline()
Ddraw_pt_fetch_shade_pipeline.c85 unsigned point_clip = draw->rasterizer->fill_front == PIPE_POLYGON_MODE_POINT || in fetch_pipeline_prepare()
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
DRasterizer.cpp216 state.fill_front = translate_fill_mode(pRasterizerDesc->FillMode); in CreateRasterizerState()
217 state.fill_back = state.fill_front; in CreateRasterizerState()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_rasterizer.c79 need_pipeline = (rast->fill_front != PIPE_POLYGON_MODE_FILL || in llvmpipe_create_rasterizer_state()
/third_party/mesa3d/src/gallium/frontends/nine/
Dnine_pipe.c90 rast.fill_front = d3dfillmode_to_pipe_polygon_mode(rs[D3DRS_FILLMODE]); in nine_convert_rasterizer_state()
91 rast.fill_back = rast.fill_front; in nine_convert_rasterizer_state()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_state.c594 assert(rs_state->fill_front <= PIPE_POLYGON_MODE_POINT); in zink_create_rasterizer_state()
595 if (rs_state->fill_back != rs_state->fill_front) in zink_create_rasterizer_state()
597 state->hw_state.polygon_mode = rs_state->fill_front; // same values in zink_create_rasterizer_state()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_draw.c127 rs_state->fill_front == PIPE_POLYGON_MODE_FILL && in crocus_update_draw_info()
133 rs_state->fill_front == PIPE_POLYGON_MODE_FILL && in crocus_update_draw_info()
Dcrocus_program.c2103 uint32_t fill_front = BRW_CLIP_FILL_MODE_CULL; in crocus_update_compiled_clip() local
2109 switch (rs_state->fill_front) { in crocus_update_compiled_clip()
2111 fill_front = BRW_CLIP_FILL_MODE_FILL; in crocus_update_compiled_clip()
2115 fill_front = BRW_CLIP_FILL_MODE_LINE; in crocus_update_compiled_clip()
2119 fill_front = BRW_CLIP_FILL_MODE_POINT; in crocus_update_compiled_clip()
2143 rs_state->fill_front != PIPE_POLYGON_MODE_FILL) { in crocus_update_compiled_clip()
2161 key.fill_ccw = fill_front; in crocus_update_compiled_clip()
2169 key.fill_cw = fill_front; in crocus_update_compiled_clip()
/third_party/mesa3d/src/gallium/include/pipe/
Dp_state.h101 unsigned fill_front:2; /**< PIPE_POLYGON_MODE_x */ member
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_pipeline_state.cpp125 : state->base.fill_front; in depth_bias()
Dd3d12_context.cpp491 if (rs_state->fill_front != rs_state->fill_back) { in d3d12_create_rasterizer_state()
494 cso->desc.FillMode = fill_mode(rs_state->fill_front); in d3d12_create_rasterizer_state()
501 templ.fill_front = rs_state->fill_back; in d3d12_create_rasterizer_state()
510 cso->desc.FillMode = fill_mode(rs_state->fill_front); in d3d12_create_rasterizer_state()
521 cso->desc.FillMode = fill_mode(rs_state->fill_front); in d3d12_create_rasterizer_state()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_state.c149 SB_DATA (so, nvgl_polygon_mode(cso->fill_front)); in nv30_rasterizer_state_create()
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_state.c1195 if (state->fill_front != PIPE_POLYGON_MODE_FILL || in r300_create_rs_state()
1208 if (util_get_offset(state, state->fill_front)) { in r300_create_rs_state()
1220 r300_translate_polygon_mode_front(state->fill_front); in r300_create_rs_state()

12