コード例 #1
0
ファイル: SkPixelRef.cpp プロジェクト: venkatarajasekhar/Qt
uint32_t SkPixelRef::getGenerationID() const {
    if (0 == fGenerationID) {
        fGenerationID = SkNextPixelRefGenerationID();
        fUniqueGenerationID = true;  // The only time we can be sure of this!
    }
    return fGenerationID;
}
コード例 #2
0
ファイル: SkPixelRef.cpp プロジェクト: jrmuizel/image-scaling
uint32_t SkPixelRef::getGenerationID() const {
    if (0 == fGenerationID) {
        fGenerationID = SkNextPixelRefGenerationID();
    }
    return fGenerationID;
}