blob: e14a85b5f4c763f46a09470dd810ff06b4d6f921 [file] [log] [blame]
bsalomon95740982014-09-04 13:12:37 -07001/*
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
12void GrProgramElement::convertRefToPendingExecution() const {
13 // This function makes it so that all the GrProgramResources own a single ref to their
14 // underlying GrGpuResource if there are any refs to the GrProgramElement and a single
15 // pending read/write if there are any pending executions of the GrProgramElement. The
16 // GrProgramResource will give up its single ref and/or pending read/write in its destructor.
17 SkASSERT(fRefCnt > 0);
18 if (0 == fPendingExecutions) {
19 for (int i = 0; i < fProgramResources.count(); ++i) {
20 fProgramResources[i]->markPendingIO();
21 }
22 }
23 ++fPendingExecutions;
24 this->unref();
25 if (0 == fRefCnt) {
26 for (int i = 0; i < fProgramResources.count(); ++i) {
27 fProgramResources[i]->removeRef();
28 }
29 }
30}