Lines Matching refs:this
4 * Use of this source code is governed by a BSD-style license that can be
82 * If the SkColorType is supported for YUVA pixmaps this will return the number of YUVA channels
83 * that can be stored in a plane of this color type and what the DataType is of those channels.
97 * must have the same DataType or this will be invalid.
115 bool operator!=(const SkYUVAPixmapInfo& that) const { return !(*this == that); }
121 /** The number of SkPixmap planes, 0 if this SkYUVAPixmapInfo is invalid. */
128 * Row bytes for the ith plane. Returns zero if i >= numPlanes() or this SkYUVAPixmapInfo is
139 * to SIZE_MAX. Returns 0 and fills planesSizes with 0 if this SkYUVAPixmapInfo is not valid.
146 * entries of pixmaps are default initialized. Fails if this SkYUVAPixmapInfo not valid.
151 * Returns true if this has been configured with a non-empty dimensioned SkYUVAInfo with
156 /** Is this valid and does it use color types allowed by the passed SupportedDataTypes? */
226 /** Number of pixmap planes or 0 if this SkYUVAPixmaps is invalid. */
227 int numPlanes() const { return this->isValid() ? fYUVAInfo.numPlanes() : 0; }
230 * Access the SkPixmap planes. They are default initialized if this is not a valid
236 * Get the ith SkPixmap plane. SkPixmap will be default initialized if i >= numPlanes or this
243 * valid if this->isValid().
247 /** Does this SkPixmaps own the backing store of the planes? */
263 using ULL = unsigned long long; // bitset cons. takes this.