Home
last modified time | relevance | path

Searched refs:pa_su_sc_mode_cntl (Results 1 – 10 of 10) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/
Dfd2_rasterizer.c78 so->pa_su_sc_mode_cntl = in fd2_rasterizer_state_create()
84 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_CULL_FRONT; in fd2_rasterizer_state_create()
86 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_CULL_BACK; in fd2_rasterizer_state_create()
88 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_PROVOKING_VTX_LAST; in fd2_rasterizer_state_create()
90 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_FACE; in fd2_rasterizer_state_create()
92 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_LINE_STIPPLE_ENABLE; in fd2_rasterizer_state_create()
94 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_MSAA_ENABLE; in fd2_rasterizer_state_create()
98 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_POLYMODE(POLY_DUALMODE); in fd2_rasterizer_state_create()
100 so->pa_su_sc_mode_cntl |= A2XX_PA_SU_SC_MODE_CNTL_POLYMODE(POLY_DISABLED); in fd2_rasterizer_state_create()
103 so->pa_su_sc_mode_cntl |= in fd2_rasterizer_state_create()
Dfd2_rasterizer.h41 uint32_t pa_su_sc_mode_cntl; member
Dfd2_emit.c281 OUT_RING(ring, rasterizer->pa_su_sc_mode_cntl | in fd2_emit_state()
/third_party/mesa3d/src/amd/vulkan/
Dradv_cmd_buffer.c1537 … cmd_buffer->state.emitted_graphics_pipeline->pa_su_sc_mode_cntl != pipeline->pa_su_sc_mode_cntl) in radv_emit_graphics_pipeline()
1777 unsigned pa_su_sc_mode_cntl = cmd_buffer->state.graphics_pipeline->pa_su_sc_mode_cntl; in radv_get_pa_su_sc_mode_cntl() local
1780 pa_su_sc_mode_cntl &= C_028814_CULL_FRONT & in radv_get_pa_su_sc_mode_cntl()
1787 pa_su_sc_mode_cntl |= S_028814_CULL_FRONT(!!(d->cull_mode & VK_CULL_MODE_FRONT_BIT)) | in radv_get_pa_su_sc_mode_cntl()
1793 return pa_su_sc_mode_cntl; in radv_get_pa_su_sc_mode_cntl()
1799 unsigned pa_su_sc_mode_cntl = radv_get_pa_su_sc_mode_cntl(cmd_buffer); in radv_emit_culling() local
1801 radeon_set_context_reg(cmd_buffer->cs, R_028814_PA_SU_SC_MODE_CNTL, pa_su_sc_mode_cntl); in radv_emit_culling()
7430 uint32_t pa_su_sc_mode_cntl = cmd_buffer->state.graphics_pipeline->pa_su_sc_mode_cntl; in radv_get_ngg_culling_settings() local
7436 : G_028814_FACE(pa_su_sc_mode_cntl) == 0; in radv_get_ngg_culling_settings()
7447 : G_028814_CULL_FRONT(pa_su_sc_mode_cntl)) in radv_get_ngg_culling_settings()
[all …]
Dradv_private.h2154 unsigned pa_su_sc_mode_cntl; member
Dradv_pipeline.c2156 pipeline->pa_su_sc_mode_cntl = in radv_pipeline_init_raster_state()
2170 pipeline->pa_su_sc_mode_cntl |= in radv_pipeline_init_raster_state()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_pipe.h305 unsigned pa_su_sc_mode_cntl; member
Dr600_state.c555 rs->pa_su_sc_mode_cntl = S_028814_PROVOKING_VTX_LAST(!state->flatshade_first) | in r600_create_rs_state()
567 r600_store_context_reg(&rs->buffer, R_028814_PA_SU_SC_MODE_CNTL, rs->pa_su_sc_mode_cntl); in r600_create_rs_state()
Dr600_state_common.c2378 unsigned su_sc_mode_cntl = rctx->rasterizer->pa_su_sc_mode_cntl; in r600_draw_vbo()
/third_party/mesa3d/docs/relnotes/
D22.2.0.rst874 - radv: Expose helper for base pa_su_sc_mode_cntl.