Home | History | Annotate | Download | only in gpu

Lines Matching refs:height

49                                                int* left, int* top, int* width, int* height,
56 SkIRect subRect = SkIRect::MakeXYWH(*left, *top, *width, *height);
68 *height = subRect.height();
75 int* left, int* top, int* width, int* height,
78 return adjust_params<void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height, data,
85 int* left, int* top, int* width, int* height,
88 return adjust_params<const void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height,
95 bool GrSurface::writePixels(int left, int top, int width, int height,
103 return context->writeSurfacePixels(this, left, top, width, height, config, buffer, rowBytes,
107 bool GrSurface::readPixels(int left, int top, int width, int height,
115 return context->readSurfacePixels(this, left, top, width, height, config, buffer,
125 return SkImageInfo::Make(this->width(), this->height(), colorType, alphaType,
133 if (!bm.tryAllocPixels(SkImageInfo::MakeN32Premul(this->width(), this->height()))) {
137 bool result = this->readPixels(0, 0, this->width(), this->height(), kSkia8888_GrPixelConfig,