HomeSort by relevance Sort by last modified time
    Searched refs:db_depth_control (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/gallium/drivers/r600/
evergreen_state.c 404 unsigned db_depth_control, alpha_test_control, alpha_ref; local
419 db_depth_control = S_028800_Z_ENABLE(state->depth.enabled) |
425 db_depth_control |= S_028800_STENCIL_ENABLE(1);
426 db_depth_control |= S_028800_STENCILFUNC(state->stencil[0].func); /* translates straight */
427 db_depth_control |= S_028800_STENCILFAIL(r600_translate_stencil_op(state->stencil[0].fail_op));
428 db_depth_control |= S_028800_STENCILZPASS(r600_translate_stencil_op(state->stencil[0].zpass_op));
429 db_depth_control |= S_028800_STENCILZFAIL(r600_translate_stencil_op(state->stencil[0].zfail_op));
432 db_depth_control |= S_028800_BACKFACE_ENABLE(1);
433 db_depth_control |= S_028800_STENCILFUNC_BF(state->stencil[1].func); /* translates straight */
434 db_depth_control |= S_028800_STENCILFAIL_BF(r600_translate_stencil_op(state->stencil[1].fail_op))
    [all...]
r600_state.c 404 unsigned db_depth_control, alpha_test_control, alpha_ref; local
419 db_depth_control = S_028800_Z_ENABLE(state->depth.enabled) |
425 db_depth_control |= S_028800_STENCIL_ENABLE(1);
426 db_depth_control |= S_028800_STENCILFUNC(state->stencil[0].func); /* translates straight */
427 db_depth_control |= S_028800_STENCILFAIL(r600_translate_stencil_op(state->stencil[0].fail_op));
428 db_depth_control |= S_028800_STENCILZPASS(r600_translate_stencil_op(state->stencil[0].zpass_op));
429 db_depth_control |= S_028800_STENCILZFAIL(r600_translate_stencil_op(state->stencil[0].zfail_op));
432 db_depth_control |= S_028800_BACKFACE_ENABLE(1);
433 db_depth_control |= S_028800_STENCILFUNC_BF(state->stencil[1].func); /* translates straight */
434 db_depth_control |= S_028800_STENCILFAIL_BF(r600_translate_stencil_op(state->stencil[1].fail_op))
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_pipeline.c 941 ds->db_depth_control = S_028800_Z_ENABLE(vkds->depthTestEnable ? 1 : 0) |
947 ds->db_depth_control |= S_028800_STENCIL_ENABLE(1) | S_028800_BACKFACE_ENABLE(1);
948 ds->db_depth_control |= S_028800_STENCILFUNC(vkds->front.compareOp);
953 ds->db_depth_control |= S_028800_STENCILFUNC_BF(vkds->back.compareOp);
    [all...]
radv_private.h 857 uint32_t db_depth_control; member in struct:radv_depth_stencil_state
    [all...]
radv_cmd_buffer.c 319 radeon_set_context_reg(cmd_buffer->cs, R_028800_DB_DEPTH_CONTROL, ds->db_depth_control);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c 1002 unsigned db_depth_control; local
    [all...]

Completed in 1066 milliseconds