Home
last modified time | relevance | path

Searched refs:wm5 (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_wm_state.c152 wm->wm5.program_uses_depth = (fp->Base.InputsRead & in brw_upload_wm_unit()
154 wm->wm5.program_computes_depth = (fp->Base.OutputsWritten & in brw_upload_wm_unit()
161 wm->wm5.program_computes_depth = 0; in brw_upload_wm_unit()
164 wm->wm5.program_uses_killpixel = fp->UsesKill || ctx->Color.AlphaEnabled; in brw_upload_wm_unit()
177 wm->wm5.enable_8_pix = 1; in brw_upload_wm_unit()
179 wm->wm5.enable_16_pix = 1; in brw_upload_wm_unit()
182 if (!wm->wm5.enable_8_pix) in brw_upload_wm_unit()
183 wm->wm5.enable_16_pix = 1; in brw_upload_wm_unit()
185 wm->wm5.max_threads = brw->max_wm_threads - 1; in brw_upload_wm_unit()
189 wm->wm5.program_uses_killpixel || in brw_upload_wm_unit()
[all …]
Dbrw_state_dump.c161 wm->wm5.enable_8_pix ? "8pix" : "", in dump_wm_state()
162 wm->wm5.enable_16_pix ? "16pix" : "", in dump_wm_state()
163 wm->wm5.program_uses_depth ? ", uses depth" : "", in dump_wm_state()
164 wm->wm5.program_computes_depth ? ", computes depth" : "", in dump_wm_state()
165 wm->wm5.program_uses_killpixel ? ", kills" : "", in dump_wm_state()
166 wm->wm5.thread_dispatch_enable ? "" : ", no dispatch", in dump_wm_state()
167 wm->wm5.max_threads + 1); in dump_wm_state()
Dbrw_structs.h590 } wm5; member