Lines Matching refs:target
16 static GrSurfaceProxy* first_target(GrRenderTask* task) { return task->target(0); }
20 if (GrSurfaceProxy* target = first_target(t)) {
21 return SkStringPrintf("%s(%d)", target->getDebugName().c_str(), t->uniqueID());
69 // target, search backward for the last task that uses the target and add a dep.
71 if (dependee->isUsed(depender->target(i))) {
75 depender->target(i)->getDebugName().c_str());
99 if (lastTaskMap->find(task->target(0))) {
100 lastTaskMap->remove(task->target(0));
106 GrSurfaceProxy* target = first_target(task);
107 GrRenderTask* clusterTail = (lastTaskMap->find(target) ? *lastTaskMap->find(target) : nullptr);
108 lastTaskMap->set(target, task);
123 // Now, let's refer to the "cluster" as the chain of tasks with the same target, that we're
129 && target == first_target(clusterHead->fPrev)) {