Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(553)

Side by Side Diff: src/gpu/GrProgramElement.cpp

Issue 537773004: Add GrProgramElement base class for GrEffect with deferred exec ref. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: small fixes needed for next CL in the series. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8
9 #include "GrProgramElement.h"
10 #include "GrProgramResource.h"
11
12 void GrProgramElement::convertRefToPendeingExecution() const {
13 // This function makes it so that all the GrProgramResources own a single re f to their
14 // underlying GrGpuResource if there are any refs to the GrProgramElement an d a single
15 // pending read if there are any pending executions of the GrProgramElement. The
16 // GrProgramResource will give up its single ref and/or pending read in its destructor.
17 SkASSERT(fRefCnt > 0);
18 if (0 == fPendingExecutions) {
19 for (int i = 0; i < fGrProgramResources.count(); ++i) {
20 fGrProgramResources[i]->markPendingIO();
21 }
22 }
23 ++fPendingExecutions;
24 this->unref();
25 if (0 == fRefCnt) {
26 for (int i = 0; i < fGrProgramResources.count(); ++i) {
27 fGrProgramResources[i]->removeRef();
28 }
29 }
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698