projects
/
platform
/
upstream
/
intel-gpu-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da42585
)
gen8 rendercpy: temporarily disable
author
Ben Widawsky
<benjamin.widawsky@intel.com>
Thu, 5 Dec 2013 23:35:01 +0000
(15:35 -0800)
committer
Ben Widawsky
<benjamin.widawsky@intel.com>
Thu, 5 Dec 2013 23:35:01 +0000
(15:35 -0800)
We don't yet have this working, and the excessive hangs are annoying.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
lib/rendercopy_i830.c
patch
|
blob
|
history
diff --git
a/lib/rendercopy_i830.c
b/lib/rendercopy_i830.c
index
73edcfa
..
5dd67b2
100644
(file)
--- a/
lib/rendercopy_i830.c
+++ b/
lib/rendercopy_i830.c
@@
-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;
}