gen8 rendercpy: temporarily disable

We don't yet have this working, and the excessive hangs are annoying.

Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Ben Widawsky 2013-12-05 15:35:01 -08:00
parent da4258529f
commit e41928e6c9

View File

@ -241,8 +241,10 @@ 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))
copy = gen8_render_copyfunc;
else if (IS_GEN8(devid)) {
fprintf(stderr, "Temporarily disabled\n");
//copy = gen8_render_copyfunc;
}
return copy;
}