Revert "gen8 rendercpy: temporarily disable"

This reverts commit e41928e6c9bb3f24833a827903f1afeda83592d6.
This commit is contained in:
Ben Widawsky 2014-03-19 10:14:15 -07:00
parent d92c2cf1de
commit 5a5880426e

View File

@ -241,10 +241,8 @@ render_copyfunc_t get_render_copyfunc(int devid)
copy = gen6_render_copyfunc;
else if (IS_GEN7(devid))
copy = gen7_render_copyfunc;
else if (IS_GEN8(devid)) {
fprintf(stderr, "Temporarily disabled\n");
//copy = gen8_render_copyfunc;
}
else if (IS_GEN8(devid))
copy = gen8_render_copyfunc;
return copy;
}