Lines Matching refs:that
4 * Use of this source code is governed by a BSD-style license that can be
38 GrBackendSemaphore::GrBackendSemaphore(const GrBackendSemaphore& that) {
40 *this = that;
43 GrBackendSemaphore& GrBackendSemaphore::operator=(const GrBackendSemaphore& that) {
44 SkASSERT(!fIsInitialized || fBackend == that.fBackend);
45 fBackend = that.fBackend;
46 switch (that.fBackend) {
49 fGLSync = that.fGLSync;
54 fVkSemaphore = that.fVkSemaphore;
59 fMtlEvent = that.fMtlEvent;
60 fMtlValue = that.fMtlValue;
64 this->assignD3DFenceInfo(*that.fD3DFenceInfo);