Lines Matching refs:that
4 * Use of this source code is governed by a BSD-style license that can be
44 GrDrawIndirectWriter(GrDrawIndirectWriter&& that) { *this = std::move(that); }
47 GrDrawIndirectWriter& operator=(GrDrawIndirectWriter&& that) {
48 fData = that.fData;
49 that.fData = nullptr;
53 bool operator==(const GrDrawIndirectWriter& that) { return fData == that.fData; }
79 GrDrawIndexedIndirectWriter(GrDrawIndexedIndirectWriter&& that) { *this = std::move(that); }
82 GrDrawIndexedIndirectWriter& operator=(GrDrawIndexedIndirectWriter&& that) {
83 fData = that.fData;
84 that.fData = nullptr;
88 bool operator==(const GrDrawIndexedIndirectWriter& that) { return fData == that.fData; }