OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:db_depth_control
(Results
1 - 3
of
3
) sorted by null
/external/mesa3d/src/gallium/drivers/r600/
r600_state.c
802
unsigned
db_depth_control
, alpha_test_control, alpha_ref;
local
817
db_depth_control
= S_028800_Z_ENABLE(state->depth.enabled) |
823
db_depth_control
|= S_028800_STENCIL_ENABLE(1);
824
db_depth_control
|= S_028800_STENCILFUNC(state->stencil[0].func); /* translates straight */
825
db_depth_control
|= S_028800_STENCILFAIL(r600_translate_stencil_op(state->stencil[0].fail_op));
826
db_depth_control
|= S_028800_STENCILZPASS(r600_translate_stencil_op(state->stencil[0].zpass_op));
827
db_depth_control
|= S_028800_STENCILZFAIL(r600_translate_stencil_op(state->stencil[0].zfail_op));
830
db_depth_control
|= S_028800_BACKFACE_ENABLE(1);
831
db_depth_control
|= S_028800_STENCILFUNC_BF(state->stencil[1].func); /* translates straight */
832
db_depth_control
|= S_028800_STENCILFAIL_BF(r600_translate_stencil_op(state->stencil[1].fail_op))
[
all
...]
evergreen_state.c
782
unsigned
db_depth_control
, alpha_test_control, alpha_ref;
local
797
db_depth_control
= S_028800_Z_ENABLE(state->depth.enabled) |
803
db_depth_control
|= S_028800_STENCIL_ENABLE(1);
804
db_depth_control
|= S_028800_STENCILFUNC(state->stencil[0].func); /* translates straight */
805
db_depth_control
|= S_028800_STENCILFAIL(r600_translate_stencil_op(state->stencil[0].fail_op));
806
db_depth_control
|= S_028800_STENCILZPASS(r600_translate_stencil_op(state->stencil[0].zpass_op));
807
db_depth_control
|= S_028800_STENCILZFAIL(r600_translate_stencil_op(state->stencil[0].zfail_op));
810
db_depth_control
|= S_028800_BACKFACE_ENABLE(1);
811
db_depth_control
|= S_028800_STENCILFUNC_BF(state->stencil[1].func); /* translates straight */
812
db_depth_control
|= S_028800_STENCILFAIL_BF(r600_translate_stencil_op(state->stencil[1].fail_op))
[
all
...]
/external/mesa3d/src/gallium/drivers/radeonsi/
si_state.c
563
unsigned
db_depth_control
, /* alpha_test_control, */ alpha_ref;
local
576
db_depth_control
= S_028800_Z_ENABLE(state->depth.enabled) |
582
db_depth_control
|= S_028800_STENCIL_ENABLE(1);
583
db_depth_control
|= S_028800_STENCILFUNC(state->stencil[0].func);
589
db_depth_control
|= S_028800_BACKFACE_ENABLE(1);
590
db_depth_control
|= S_028800_STENCILFUNC_BF(state->stencil[1].func);
618
si_pm4_set_reg(pm4, R_028800_DB_DEPTH_CONTROL,
db_depth_control
);
[
all
...]
Completed in 983 milliseconds