Home
last modified time | relevance | path

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

/external/skia/src/images/
DSkMovie_gif.cpp128 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
136 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
149 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
150 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
151 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
163 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
166 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
169 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
182 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
[all …]
/external/chromium_org/third_party/skia/src/images/
DSkMovie_gif.cpp128 const ColorMapObject* cmap, int transparent, int copyWidth, in copyInterlaceGroup() argument
136 copyLine(dst, src, cmap, transparent, copyWidth); in copyInterlaceGroup()
149 GifWord copyWidth = frame->ImageDesc.Width; in blitInterlace() local
150 if (frame->ImageDesc.Left + copyWidth > width) { in blitInterlace()
151 copyWidth = width - frame->ImageDesc.Left; in blitInterlace()
163 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0); in blitInterlace()
166 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4); in blitInterlace()
169 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2); in blitInterlace()
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1); in blitInterlace()
182 GifWord copyWidth = frame->ImageDesc.Width; in blitNormal() local
[all …]
/external/chromium_org/gpu/command_buffer/service/
Dgles2_cmd_decoder.cc8350 GLint copyWidth = 0; in DoCopyTexImage2D() local
8352 Clip(x, width, size.width(), &copyX, &copyWidth); in DoCopyTexImage2D()
8357 copyWidth != width || in DoCopyTexImage2D()
8368 if (copyHeight > 0 && copyWidth > 0) { in DoCopyTexImage2D()
8376 copyWidth, copyHeight); in DoCopyTexImage2D()
8381 copyX, copyY, copyWidth, copyHeight, border); in DoCopyTexImage2D()
8453 GLint copyWidth = 0; in DoCopyTexSubImage2D() local
8455 Clip(x, width, size.width(), &copyX, &copyWidth); in DoCopyTexSubImage2D()
8466 copyWidth != width || in DoCopyTexSubImage2D()
8485 if (copyHeight > 0 && copyWidth > 0) { in DoCopyTexSubImage2D()
[all …]
/external/chromium_org/third_party/angle/src/libGLESv2/
DProgramBinary.cpp469 int copyWidth = std::min(targetWidth, srcWidth); in transposeMatrix() local
472 for (int x = 0; x < copyWidth; x++) in transposeMatrix()