Use R700_STREAMOUT=1 if you wanna hack transform feedback on r700.
rscreen->chip_class = R600;
}
+ /* XXX streamout is broken on r700 */
+ if (rscreen->chip_class == R700 &&
+ !debug_get_bool_option("R700_STREAMOUT", FALSE)) {
+ rscreen->info.r600_has_streamout = false;
+ }
+
if (r600_init_tiling(rscreen)) {
FREE(rscreen);
return NULL;
ws->info.r600_virtual_address = FALSE;
}
- /* XXX don't enable this for R700 yet, it's broken on those asics */
- ws->info.r600_has_streamout = debug_get_bool_option("R600_STREAMOUT", FALSE);
+ ws->info.r600_has_streamout = ws->info.drm_minor >= 13;
}
return TRUE;