blob: 532e0655d8a340e0749e9e88122a21b88877869f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrGpuResourceRef.h"
GrGpuResourceRef::GrGpuResourceRef() {
fResource = nullptr;
fOwnRef = false;
fPendingIO = false;
}
GrGpuResourceRef::GrGpuResourceRef(GrGpuResource* resource, GrIOType ioType) {
fResource = nullptr;
fOwnRef = false;
fPendingIO = false;
this->setResource(resource, ioType);
}
GrGpuResourceRef::~GrGpuResourceRef() {
if (fOwnRef) {
SkASSERT(fResource);
fResource->unref();
}
if (fPendingIO) {
switch (fIOType) {
case kRead_GrIOType:
fResource->completedRead();
break;
case kWrite_GrIOType:
fResource->completedWrite();
break;
case kRW_GrIOType:
fResource->completedRead();
fResource->completedWrite();
break;
}
}
}
void GrGpuResourceRef::reset() {
SkASSERT(!fPendingIO);
SkASSERT(SkToBool(fResource) == fOwnRef);
if (fOwnRef) {
fResource->unref();
fOwnRef = false;
fResource = nullptr;
}
}
void GrGpuResourceRef::setResource(GrGpuResource* resource, GrIOType ioType) {
SkASSERT(!fPendingIO);
SkASSERT(SkToBool(fResource) == fOwnRef);
SkSafeUnref(fResource);
if (nullptr == resource) {
fResource = nullptr;
fOwnRef = false;
} else {
fResource = resource;
fOwnRef = true;
fIOType = ioType;
}
}
void GrGpuResourceRef::markPendingIO() const {
if (!fResource) {
return;
}
// This should only be called when the owning GrProgramElement gets its first
// pendingExecution ref.
SkASSERT(!fPendingIO);
fPendingIO = true;
switch (fIOType) {
case kRead_GrIOType:
fResource->addPendingRead();
break;
case kWrite_GrIOType:
fResource->addPendingWrite();
break;
case kRW_GrIOType:
fResource->addPendingRead();
fResource->addPendingWrite();
break;
}
}
void GrGpuResourceRef::pendingIOComplete() const {
if (!fResource) {
return;
}
// This should only be called when the owner's pending executions have ocurred but it is still
// reffed.
SkASSERT(fOwnRef);
SkASSERT(fPendingIO);
switch (fIOType) {
case kRead_GrIOType:
fResource->completedRead();
break;
case kWrite_GrIOType:
fResource->completedWrite();
break;
case kRW_GrIOType:
fResource->completedRead();
fResource->completedWrite();
break;
}
fPendingIO = false;
}
void GrGpuResourceRef::removeRef() const {
if (!fResource) {
return;
}
// This should only be called once, when the owners last ref goes away and
// there is a pending execution.
SkASSERT(fOwnRef);
SkASSERT(fPendingIO);
fResource->unref();
fOwnRef = false;
}
|