SCHED: Added "intel_gpu" to app_plan_uses_gpu()

This commit is contained in:
Eric J Korpela 2013-06-25 19:31:23 -07:00
parent 05689ae1d1
commit 03e64f720b
1 changed files with 3 additions and 0 deletions

View File

@ -309,6 +309,9 @@ bool app_plan_uses_gpu(const char* plan_class) {
if (strstr(plan_class, "ati")) {
return true;
}
if (strstr(plan_class, "intel_gpu")) {
return true;
}
return false;
}