Home
last modified time | relevance | path

Searched refs:kPathRefGenIDBitCnt (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/src/core/
H A DSkPathRef.cpp22 static constexpr int kPathRefGenIDBitCnt = 30; // leave room for the fill type (skbug.com/1762) variable
24 static constexpr int kPathRefGenIDBitCnt = 32; variable
444 static const uint32_t kMask = (static_cast<int64_t>(1) << kPathRefGenIDBitCnt) - 1; in genID()
457 SkASSERT((unsigned)fillType < (1 << (32 - kPathRefGenIDBitCnt))); in genID()
458 fGenerationID |= static_cast<uint32_t>(fillType) << kPathRefGenIDBitCnt; in genID()