i965: VS use SPF mode on sandybridge for now

Until conditional instructions were fixed, use SPF mode instead for now.
This commit is contained in:
Zhenyu Wang 2010-09-17 14:47:05 +08:00
parent 7401a98e29
commit 9c39a9fcb2
2 changed files with 5 additions and 1 deletions

View File

@ -1635,6 +1635,10 @@ void brw_vs_emit(struct brw_vs_compile *c )
printf("\n");
}
/* FIXME Need to fix conditional instruction to remove this */
if (intel->gen >= 6)
p->single_program_flow = GL_TRUE;
brw_set_compression_control(p, BRW_COMPRESSION_NONE);
brw_set_access_mode(p, BRW_ALIGN_16);
if_depth_in_loop[loop_depth] = 0;

View File

@ -93,7 +93,7 @@ upload_vs_state(struct brw_context *brw)
BEGIN_BATCH(6);
OUT_BATCH(CMD_3D_VS_STATE << 16 | (6 - 2));
OUT_RELOC(brw->vs.prog_bo, I915_GEM_DOMAIN_INSTRUCTION, 0, 0);
OUT_BATCH((0 << GEN6_VS_SAMPLER_COUNT_SHIFT) |
OUT_BATCH(GEN6_VS_SPF_MODE | (0 << GEN6_VS_SAMPLER_COUNT_SHIFT) |
(brw->vs.nr_surfaces << GEN6_VS_BINDING_TABLE_ENTRY_COUNT_SHIFT));
OUT_BATCH(0); /* scratch space base offset */
OUT_BATCH((1 << GEN6_VS_DISPATCH_START_GRF_SHIFT) |