Explorar el Código

i965/fs: Don't modify ann_count if not debugging.

If we make ann_count non-zero, annotation_finalize() won't bail.

Not modifying it seems to make the code more clear than would modifying
annotation_finalize().
tags/10.3-branchpoint
Matt Turner hace 11 años
padre
commit
c9fd68408b

+ 3
- 1
src/mesa/drivers/dri/i965/brw_fs_generator.cpp Ver fichero

@@ -1751,7 +1751,9 @@ fs_generator::generate_code(exec_list *instructions,
* we've emitted any discards. If not, this will emit no code.
*/
if (!patch_discard_jumps_to_fb_writes()) {
annotation->ann_count--;
if (unlikely(debug_flag)) {
annotation->ann_count--;
}
}
break;


+ 5
- 1
src/mesa/drivers/dri/i965/gen8_fs_generator.cpp Ver fichero

@@ -1243,7 +1243,11 @@ gen8_fs_generator::generate_code(exec_list *instructions,
/* This is the place where the final HALT needs to be inserted if
* we've emitted any discards. If not, this will emit no code.
*/
patch_discard_jumps_to_fb_writes();
if (!patch_discard_jumps_to_fb_writes()) {
if (unlikely(INTEL_DEBUG & DEBUG_WM)) {
annotation->ann_count--;
}
}
break;

default:

Cargando…
Cancelar
Guardar