aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrTextureOpList.cpp
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-05-30 13:47:32 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-05-31 17:00:22 +0000
commit5efd5ea4e146c47394d16c8b6f876264822a0bee (patch)
tree81bff3047ae76431524c75bd9d351171b5fe50e5 /src/gpu/GrTextureOpList.cpp
parentbef2852a8ca0c2dccd9500857a03208d39e3d4f7 (diff)
Update clearOp for split-OpList world (take 3)
It would reduce a lot of noise if the GrRenderTargetOpList kept a pointer to the GrCaps but, for now, I'm trying to shrink the GrRTOpList, not expand it. Reland of: https://skia-review.googlesource.com/c/17323/ (Update clearOp for split-OpList world) Change-Id: Ia61ce4d6ce245380fc9651928a46c22039fc12cf Reviewed-on: https://skia-review.googlesource.com/18026 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu/GrTextureOpList.cpp')
-rw-r--r--src/gpu/GrTextureOpList.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gpu/GrTextureOpList.cpp b/src/gpu/GrTextureOpList.cpp
index 0963f3541c..d15c778296 100644
--- a/src/gpu/GrTextureOpList.cpp
+++ b/src/gpu/GrTextureOpList.cpp
@@ -15,8 +15,10 @@
////////////////////////////////////////////////////////////////////////////////
-GrTextureOpList::GrTextureOpList(GrTextureProxy* proxy, GrAuditTrail* auditTrail)
- : INHERITED(proxy, auditTrail) {
+GrTextureOpList::GrTextureOpList(GrResourceProvider* resourceProvider,
+ GrTextureProxy* proxy,
+ GrAuditTrail* auditTrail)
+ : INHERITED(resourceProvider, proxy, auditTrail) {
}
GrTextureOpList::~GrTextureOpList() {