HomeSort by relevance Sort by last modified time
    Searched refs:SkIRect (Results 376 - 400 of 571) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/skia/src/core/
SkOrderedWriteBuffer.cpp 117 void SkOrderedWriteBuffer::writeIRect(const SkIRect& rect) {
118 fWriter.write(&rect, sizeof(SkIRect));
SkPixelRef.cpp 273 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
277 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkRect.cpp 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
29 void SkIRect::sort() {
SkBlitter_A8.cpp 123 void SkA8_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) {
320 void SkA8_Shader_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) {
409 void SkA8_Coverage_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) {
SkEdge.cpp 34 int SkEdge::setLine(const SkPoint& p0, const SkPoint& p1, const SkIRect* clip,
126 void SkEdge::chopLineWithClip(const SkIRect& clip)
337 int SkCubicEdge::setCubic(const SkPoint pts[4], const SkIRect* clip, int shift)
  /external/chromium_org/third_party/skia/src/gpu/
GrAAHairLinePathRenderer.cpp 330 const SkIRect& devClipBounds,
340 SkIRect ibounds;
361 if (SkIRect::Intersects(devClipBounds, ibounds)) {
388 if (SkIRect::Intersects(devClipBounds, ibounds)) {
409 if (SkIRect::Intersects(devClipBounds, ibounds)) {
437 if (SkIRect::Intersects(devClipBounds, ibounds)) {
465 if (SkIRect::Intersects(devClipBounds, ibounds)) {
    [all...]
  /external/skia/gm/
bitmaprect.cpp 52 const SkIRect src[] = {
219 SkIRect iSrcR1, iSrcR2;
imagefiltersbase.cpp 118 SkIRect bounds;
135 SkIRect bounds;
  /external/skia/include/core/
SkClipStack.h 262 explicit SkClipStack(const SkIRect& r);
302 void clipDevRect(const SkIRect& ir, SkRegion::Op op) {
SkDevice.h 21 struct SkIRect;
86 void getGlobalBounds(SkIRect* bounds) const {
SkWriter32.h 118 void writeIRect(const SkIRect& rect) {
119 *(SkIRect*)this->reserve(sizeof(rect)) = rect;
  /external/skia/include/device/xps/
SkXPSDevice.h 307 const SkIRect& clip, SkIRect* clipIRect);
  /external/skia/src/core/
SkDraw.cpp 152 SkIRect devBounds = fRC->getBounds();
249 static void CallBitmapXferProc(const SkBitmap& bitmap, const SkIRect& rect,
287 SkIRect devRect;
346 const SkIRect& r = rec.fClip->getBounds();
361 const SkIRect& r = rec.fRC->getBounds();
382 const SkIRect& r = rec.fRC->getBounds();
568 SkIRect ibounds;
877 SkIRect ir;
    [all...]
SkOrderedWriteBuffer.cpp 117 void SkOrderedWriteBuffer::writeIRect(const SkIRect& rect) {
118 fWriter.write(&rect, sizeof(SkIRect));
SkPixelRef.cpp 273 bool SkPixelRef::readPixels(SkBitmap* dst, const SkIRect* subset) {
277 bool SkPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
SkRect.cpp 12 void SkIRect::join(int32_t left, int32_t top, int32_t right, int32_t bottom) {
29 void SkIRect::sort() {
  /external/skia/src/gpu/
GrAAHairLinePathRenderer.cpp 330 const SkIRect& devClipBounds,
340 SkIRect ibounds;
361 if (SkIRect::Intersects(devClipBounds, ibounds)) {
388 if (SkIRect::Intersects(devClipBounds, ibounds)) {
409 if (SkIRect::Intersects(devClipBounds, ibounds)) {
437 if (SkIRect::Intersects(devClipBounds, ibounds)) {
465 if (SkIRect::Intersects(devClipBounds, ibounds)) {
    [all...]
  /external/skia/tests/
GpuBitmapCopyTest.cpp 138 SkIRect subsetRect = SkIRect::MakeLTRB(W/2, H/2, W, H);
  /frameworks/base/core/jni/android/graphics/
BitmapRegionDecoder.cpp 62 bool decodeRegion(SkBitmap* bitmap, const SkIRect& rect,
211 SkIRect region;
  /frameworks/base/libs/hwui/
Snapshot.cpp 87 const SkIRect& bounds = clipRegion->getBounds();
99 SkIRect tmp;
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libwebp.cpp 114 virtual bool onDecodeSubset(SkBitmap* bitmap, const SkIRect& rect) SK_OVERRIDE;
260 const SkIRect& region, bool premultiply) {
331 const SkIRect& region) {
332 SkIRect rect = SkIRect::MakeWH(fOrigWidth, fOrigHeight);
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 114 virtual bool onDecodeSubset(SkBitmap* bitmap, const SkIRect& rect) SK_OVERRIDE;
260 const SkIRect& region, bool premultiply) {
331 const SkIRect& region) {
332 SkIRect rect = SkIRect::MakeWH(fOrigWidth, fOrigHeight);
  /external/skia/tools/
skimage_main.cpp 182 * Return a random SkIRect inside the range specified.
184 * @param maxX Exclusive maximum x-coordinate. SkIRect's fLeft and fRight will be
186 * @param maxY Exclusive maximum y-coordinate. SkIRect's fTop and fBottom will be
188 * @return SkIRect Non-empty, non-degenerate rectangle.
190 static SkIRect generate_random_rect(SkRandom* rand, int32_t maxX, int32_t maxY) {
196 SkIRect rect = SkIRect::MakeLTRB(left, top, right, bottom);
352 SkIRect rect, const SkBitmap& originalBitmap) {
594 SkIRect rect = generate_random_rect(&rand, width, height);
    [all...]
  /external/chromium_org/cc/base/
region_unittest.cc 411 EXPECT_TRUE(SkIRect::MakeXYWH(10, 10, 10, 0).isEmpty());
412 EXPECT_TRUE(SkIRect::MakeXYWH(10, 10, 0, 10).isEmpty());
413 EXPECT_TRUE(SkIRect::MakeXYWH(-10, 10, 10, 0).isEmpty());
414 EXPECT_TRUE(SkIRect::MakeXYWH(-10, 10, 0, 10).isEmpty());
415 EXPECT_FALSE(SkIRect::MakeXYWH(-1, -1, 1, 1).isEmpty());
416 EXPECT_FALSE(SkIRect::MakeXYWH(0, 0, 1, 1).isEmpty());
417 EXPECT_FALSE(SkIRect::MakeXYWH(0, 0, 2, 2).isEmpty());
  /external/chromium_org/third_party/skia/src/utils/
SkNinePatch.cpp 255 const SkBitmap& bitmap, const SkIRect& margins,
284 SkIRect s;
302 const SkBitmap& bitmap, const SkIRect& margins,

Completed in 845 milliseconds

<<11121314151617181920>>