Remove unused ActualUse param from GrResourceAllocator
This was here for deferred proxies, which are gone now.
Bug: skia:11288
Change-Id: Idc8a3aef7c3cce62d9397338a0c77d41435527a9
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/367881
Commit-Queue: Adlai Holler <adlai@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Auto-Submit: Adlai Holler <adlai@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/GrWaitRenderTask.cpp b/src/gpu/GrWaitRenderTask.cpp
index 9eadd89..93fe6de 100644
--- a/src/gpu/GrWaitRenderTask.cpp
+++ b/src/gpu/GrWaitRenderTask.cpp
@@ -17,8 +17,7 @@
// we manipulate our target's proxy.
SkASSERT(0 == this->numTargets());
auto fakeOp = alloc->curOp();
- alloc->addInterval(fWaitedOn.proxy(), fakeOp, fakeOp,
- GrResourceAllocator::ActualUse::kYes);
+ alloc->addInterval(fWaitedOn.proxy(), fakeOp, fakeOp);
alloc->incOps();
}