Lines Matching refs:height
131 static SkImageInfo Make(int width, int height, SkColorType ct, SkAlphaType at) {
133 width, height, ct, at
141 static SkImageInfo MakeN32(int width, int height, SkAlphaType at) {
143 width, height, kN32_SkColorType, at
151 static SkImageInfo MakeN32Premul(int width, int height) {
153 width, height, kN32_SkColorType, kPremul_SkAlphaType
162 return MakeN32Premul(size.width(), size.height());
165 static SkImageInfo MakeA8(int width, int height) {
167 width, height, kAlpha_8_SkColorType, kPremul_SkAlphaType
172 static SkImageInfo MakeUnknown(int width, int height) {
174 width, height, kUnknown_SkColorType, kIgnore_SkAlphaType
187 int height() const { return fHeight; }
201 * but with the specified width and height.