Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
171 GrDrawVerticesBatch* that = t->cast<GrDrawVerticesBatch>();
173 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
174 that->bounds(), caps)) {
178 if (!this->batchablePrimitiveType() || this->primitiveType() != that->primitiveType()) {
183 if (!fViewMatrix.cheapEqualTo(that->fViewMatrix)) {
187 if (fGeoData[0].fIndices.isEmpty() != that->fGeoData[0].fIndices.isEmpty()) {
191 if (fGeoData[0].fLocalCoords.isEmpty() != that->fGeoData[0].fLocalCoords.isEmpty()) {
196 if (that->fVariableColor || that->fGeoData[0].fColor != fGeoData[0].fColor) {
201 fGeoData.push_back_n(that->geoData()->count(), that->geoData()->begin());
202 fVertexCount += that->fVertexCount;
203 fIndexCount += that->fIndexCount;
205 this->joinBounds(that->bounds());