mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
Disassemble active program when DEBUG_VS is set.
This commit is contained in:
parent
7b8c73460f
commit
72e810db9d
1 changed files with 7 additions and 0 deletions
|
|
@ -893,6 +893,13 @@ void brw_vs_emit( struct brw_vs_compile *c )
|
|||
GLuint nr_insns = c->vp->program.Base.NumInstructions;
|
||||
GLuint insn;
|
||||
|
||||
|
||||
if (INTEL_DEBUG & DEBUG_VS) {
|
||||
_mesa_printf("\n\n\nvs-emit:\n");
|
||||
_mesa_print_program(&c->vp->program.Base);
|
||||
_mesa_printf("\n");
|
||||
}
|
||||
|
||||
brw_set_compression_control(p, BRW_COMPRESSION_NONE);
|
||||
brw_set_access_mode(p, BRW_ALIGN_16);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue