Lines Matching defs:that
4 * Use of this source code is governed by a BSD-style license that can be
40 bool GrSimpleMeshDrawOpHelper::isCompatible(const GrSimpleMeshDrawOpHelper& that,
43 if (SkToBool(fProcessors) != SkToBool(that.fProcessors)) {
47 if (*fProcessors != *that.fProcessors) {
54 // If we're ignoring AA it should be bc we already know they are the same or that
56 SkASSERT(fAAType == that.fAAType ||
57 GrMeshDrawOp::CanUpgradeAAOnMerge(this->aaType(), that.aaType()));
61 bool result = fPipelineFlags == that.fPipelineFlags &&
62 (ignoreAAType || fAAType == that.fAAType);
63 SkASSERT(!result || fCompatibleWithCoverageAsAlpha == that.fCompatibleWithCoverageAsAlpha);
64 SkASSERT(!result || fUsesLocalCoords == that.fUsesLocalCoords);