Merge GrOpList and GrRTOpList and rename to GrOpsTask.
Change-Id: I8f4f2218a30fd0541a8f79f7bb9850f9500cd243
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/236343
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
diff --git a/src/gpu/GrTextureResolveRenderTask.cpp b/src/gpu/GrTextureResolveRenderTask.cpp
index 613f6bd..1e52b87 100644
--- a/src/gpu/GrTextureResolveRenderTask.cpp
+++ b/src/gpu/GrTextureResolveRenderTask.cpp
@@ -27,7 +27,7 @@
textureProxyPtr, GrMipMapped::kNo, GrTextureResolveManager(nullptr), caps);
textureProxyPtr->setLastRenderTask(resolveTask.get());
- // We only resolve the texture; nobody should try to do anything else with this opList.
+ // We only resolve the texture; nobody should try to do anything else with this opsTask.
resolveTask->makeClosed(caps);
if (GrTextureResolveFlags::kMipMaps & flags) {
@@ -41,7 +41,7 @@
void GrTextureResolveRenderTask::gatherProxyIntervals(GrResourceAllocator* alloc) const {
// This renderTask doesn't have "normal" ops. In this case we still need to add an interval (so
- // fEndOfOpListOpIndices will remain in sync), so we create a fake op# to capture the fact that
+ // fEndOfOpsTaskOpIndices will remain in sync), so we create a fake op# to capture the fact that
// we manipulate fTarget.
alloc->addInterval(fTarget.get(), alloc->curOp(), alloc->curOp(),
GrResourceAllocator::ActualUse::kYes);