Lines Matching refs:bitsPerComponent
108 int bitsPerComponent) { in Make()
109 return Make(width, height, color, alpha, bitsPerComponent, nullptr); in Make()
113 Alpha alpha, int bitsPerComponent, std::unique_ptr<ICCProfile> profile) { in Make()
114 return Make(width, height, color, alpha, /*bitsPerComponent*/ bitsPerComponent, in Make()
115 std::move(profile), /*colorDepth*/ bitsPerComponent); in Make()
119 Alpha alpha, int bitsPerComponent, std::unique_ptr<ICCProfile> profile, in Make()
121 SkASSERT(1 == bitsPerComponent || in Make()
122 2 == bitsPerComponent || in Make()
123 4 == bitsPerComponent || in Make()
124 8 == bitsPerComponent || in Make()
125 16 == bitsPerComponent); in Make()
135 SkASSERT(16 != bitsPerComponent); in Make()
141 SkASSERT(bitsPerComponent >= 8); in Make()
147 SkASSERT(8 == bitsPerComponent); in Make()
150 SkASSERT(bitsPerComponent >= 8); in Make()
154 SkASSERT(8 == bitsPerComponent); in Make()
158 SkASSERT(8 == bitsPerComponent); in Make()
162 SkASSERT(8 == bitsPerComponent); in Make()
173 SkToU8(bitsPerComponent), in Make()
212 uint8_t bitsPerComponent() const { return fBitsPerComponent; } in bitsPerComponent() function
264 uint8_t bitsPerComponent, uint8_t colorDepth, std::unique_ptr<ICCProfile> profile) in SkEncodedInfo()
269 , fBitsPerComponent(bitsPerComponent) in SkEncodedInfo()