OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 | |
9 #include "GrProgramElement.h" | 8 #include "GrProgramElement.h" |
10 #include "GrProgramResource.h" | 9 #include "GrProgramResource.h" |
11 | 10 |
12 void GrProgramElement::convertRefToPendingExecution() const { | 11 void GrProgramElement::convertRefToPendingExecution() const { |
13 // This function makes it so that all the GrProgramResources own a single re
f to their | 12 // 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 | 13 // underlying GrGpuResource if there are any refs to the GrProgramElement an
d a single |
15 // pending read/write if there are any pending executions of the GrProgramEl
ement. The | 14 // pending read/write if there are any pending executions of the GrProgramEl
ement. The |
16 // GrProgramResource will give up its single ref and/or pending read/write i
n its destructor. | 15 // GrProgramResource will give up its single ref and/or pending read/write i
n its destructor. |
17 SkASSERT(fRefCnt > 0); | 16 SkASSERT(fRefCnt > 0); |
18 if (0 == fPendingExecutions) { | 17 if (0 == fPendingExecutions) { |
19 for (int i = 0; i < fProgramResources.count(); ++i) { | 18 for (int i = 0; i < fProgramResources.count(); ++i) { |
20 fProgramResources[i]->markPendingIO(); | 19 fProgramResources[i]->markPendingIO(); |
21 } | 20 } |
22 } | 21 } |
23 ++fPendingExecutions; | 22 ++fPendingExecutions; |
24 this->unref(); | 23 this->unref(); |
25 if (0 == fRefCnt) { | 24 if (0 == fRefCnt) { |
26 for (int i = 0; i < fProgramResources.count(); ++i) { | 25 for (int i = 0; i < fProgramResources.count(); ++i) { |
27 fProgramResources[i]->removeRef(); | 26 fProgramResources[i]->removeRef(); |
28 } | 27 } |
29 } | 28 } |
30 } | 29 } |
| 30 |
| 31 void GrProgramElement::completedExecution() const { |
| 32 this->validate(); |
| 33 --fPendingExecutions; |
| 34 if (0 == fPendingExecutions) { |
| 35 if (0 == fRefCnt) { |
| 36 SkDELETE(this); |
| 37 } else { |
| 38 // Now our pending executions have ocurred and we still have refs. C
onvert |
| 39 // ownership of our resources back to regular refs. |
| 40 for (int i = 0; i < fProgramResources.count(); ++i) { |
| 41 fProgramResources[i]->pendingIOComplete(); |
| 42 } |
| 43 |
| 44 } |
| 45 } |
| 46 } |
OLD | NEW |