blob: ad13e4a4507ba9731b296bf728902d179079f9a3 (
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
|
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrSurfaceProxyRef.h"
#include "GrTextureProxy.h"
GrSurfaceProxyRef::GrSurfaceProxyRef() {
fProxy = nullptr;
fOwnRef = false;
fPendingIO = false;
}
GrSurfaceProxyRef::GrSurfaceProxyRef(sk_sp<GrSurfaceProxy> proxy, GrIOType ioType) {
fProxy = nullptr;
fOwnRef = false;
fPendingIO = false;
this->setProxy(std::move(proxy), ioType);
}
GrSurfaceProxyRef::~GrSurfaceProxyRef() {
this->reset();
}
void GrSurfaceProxyRef::reset() {
if (fPendingIO) {
SkASSERT(fProxy);
switch (fIOType) {
case kRead_GrIOType:
fProxy->completedRead();
break;
case kWrite_GrIOType:
fProxy->completedWrite();
break;
case kRW_GrIOType:
fProxy->completedRead();
fProxy->completedWrite();
break;
}
fPendingIO = false;
}
if (fOwnRef) {
SkASSERT(fProxy);
fProxy->unref();
fOwnRef = false;
}
fProxy = nullptr;
}
void GrSurfaceProxyRef::setProxy(sk_sp<GrSurfaceProxy> proxy, GrIOType ioType) {
SkASSERT(!fPendingIO);
SkASSERT(SkToBool(fProxy) == fOwnRef);
SkSafeUnref(fProxy);
if (!proxy) {
fProxy = nullptr;
fOwnRef = false;
} else {
fProxy = proxy.release(); // due to the semantics of this class we unpack from sk_sp
fOwnRef = true;
fIOType = ioType;
}
}
void GrSurfaceProxyRef::markPendingIO() const {
// This should only be called when the owning GrProgramElement gets its first
// pendingExecution ref.
SkASSERT(!fPendingIO);
SkASSERT(fProxy);
fPendingIO = true;
switch (fIOType) {
case kRead_GrIOType:
fProxy->addPendingRead();
break;
case kWrite_GrIOType:
fProxy->addPendingWrite();
break;
case kRW_GrIOType:
fProxy->addPendingRead();
fProxy->addPendingWrite();
break;
}
}
void GrSurfaceProxyRef::pendingIOComplete() const {
// 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:
fProxy->completedRead();
break;
case kWrite_GrIOType:
fProxy->completedWrite();
break;
case kRW_GrIOType:
fProxy->completedRead();
fProxy->completedWrite();
break;
}
fPendingIO = false;
}
void GrSurfaceProxyRef::removeRef() const {
// This should only be called once, when the owners last ref goes away and
// there is a pending execution.
SkASSERT(fOwnRef);
SkASSERT(fPendingIO);
SkASSERT(fProxy);
fProxy->unref();
fOwnRef = false;
}
|