HomeSort by relevance Sort by last modified time
    Searched full:skrect (Results 1 - 25 of 344) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/gpu/include/
GrMesh.h 4 #include "SkRect.h"
17 void init(const SkRect& bounds, int rows, int cols,
18 const SkRect& texture);
20 const SkRect& bounds() const { return fBounds; }
32 SkRect fBounds;
  /external/skia/include/effects/
SkRectShape.h 31 void setRect(const SkRect&);
32 void setOval(const SkRect&);
34 void setRRect(const SkRect&, SkScalar rx, SkScalar ry);
50 SkRect fBounds;
  /external/skia/include/views/
SkStackViewLayout.h 35 void getMargin(SkRect*) const;
36 void setMargin(const SkRect&);
74 SkRect fMargin;
82 void getMargin(SkRect*) const;
83 void setMargin(const SkRect&);
91 SkRect fMargin;
  /external/skia/include/text/
SkTextLayout.h 29 void setBounds(const SkRect& bounds);
41 SkRect fBounds;
  /external/skia/tests/
InfRectTest.cpp 2 #include "SkRect.h"
12 SkRect rect;
28 SkRect rect = SkRect::MakeXYWH(small, small, big, big);
ClipStackTest.cpp 4 #include "SkRect.h"
19 SkRect r = SkRect::MakeLTRB(1, 2, 3, 4);
21 r = SkRect::MakeLTRB(10, 11, 12, 13);
25 r = SkRect::MakeLTRB(14, 15, 16, 17);
38 r = SkRect::MakeLTRB(14, 15, 16, 17);
45 r = SkRect::MakeLTRB(14, 15, 16, 17);
60 r = SkRect::MakeLTRB(24, 25, 26, 27);
110 SkRect answer;
ParsePathTest.cpp 26 SkRect fBounds;
39 const SkRect& expectedBounds = gRec[i].fBounds;
40 const SkRect& pathBounds = path.getBounds();
46 SkRect r;
  /external/skia/src/core/
SkRect.cpp 17 #include "SkRect.h"
47 bool SkRect::hasValidCoordinates() const {
54 void SkRect::sort() {
63 void SkRect::toQuad(SkPoint quad[4]) const {
72 void SkRect::set(const SkPoint pts[], int count) {
76 sk_bzero(this, sizeof(SkRect));
113 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right,
127 bool SkRect::intersect(const SkRect& r) {
132 void SkRect::join(SkScalar left, SkScalar top, SkScalar right
    [all...]
SkEdgeBuilder.h 5 #include "SkRect.h"
SkQuadClipper.h 37 SkRect fClip;
46 bool clipQuad(const SkPoint pts[3], const SkRect& clip);
47 bool clipCubic(const SkPoint pts[4], const SkRect& clip);
62 void clipMonoQuad(const SkPoint srcPts[3], const SkRect& clip);
63 void clipMonoCubic(const SkPoint srcPts[4], const SkRect& clip);
  /external/skia/samplecode/
SampleDraw.cpp 13 SkRect rect = SkRect::MakeXYWH(25, 25, 50, 50);
19 rect = SkRect::MakeXYWH(50, 10, 40, 80);
22 rect = SkRect::MakeXYWH(50, 0, 50, 100);
31 static void test_strokerect(SkCanvas* canvas, const SkRect& r) {
41 SkRect r2(r);
51 SkRect r;
115 void getBounds(SkRect* bounds) {
131 virtual void onGetBounds(SkRect*) = 0;
134 SkRect r
    [all...]
SampleAARects.cpp 15 SkRect r;
68 SkRect rect;
81 rect = SkRect::MakeLTRB(SkFloatToScalar(0.f),
88 rect = SkRect::MakeLTRB(SkFloatToScalar(0.5f),
95 rect = SkRect::MakeLTRB(SkFloatToScalar(0.5f),
102 rect = SkRect::MakeLTRB(SkFloatToScalar(0.75f),
111 rect = SkRect::MakeLTRB(SkFloatToScalar(0.0f),
124 rect = SkRect::MakeLTRB(SkFloatToScalar(-20.0f),
134 rect = SkRect::MakeLTRB(SkFloatToScalar(0.0f),
144 rect = SkRect::MakeLTRB(SkFloatToScalar(0.5f)
    [all...]
SampleLayerMask.cpp 24 void drawMask(SkCanvas* canvas, const SkRect& r) {
36 SkRect bounds = r;
52 SkRect r;
SamplePathClip.cpp 19 SkRect fOval;
42 SkRect oval = fOval;
51 SkRect r;
  /external/webkit/Source/WebKit/android/
RenderSkinNinePatch.h 28 class SkRect;
45 static void DrawNinePatch(SkCanvas*, const SkRect&, const NinePatch&);
  /external/skia/include/core/
SkClipStack.h 7 struct SkRect;
28 SkRect r;
32 void clipDevRect(const SkRect&, SkRegion::Op = SkRegion::kIntersect_Op);
47 const SkRect* fRect; // if non-null, this is a rect clip
SkEdgeClipper.h 27 bool clipQuad(const SkPoint pts[3], const SkRect& clip);
28 bool clipCubic(const SkPoint pts[4], const SkRect& clip);
43 void clipMonoQuad(const SkPoint srcPts[3], const SkRect& clip);
44 void clipMonoCubic(const SkPoint srcPts[4], const SkRect& clip);
SkStroke.h 23 struct SkRect;
55 void strokeRect(const SkRect& rect, SkPath*) const;
56 void strokeOval(const SkRect& oval, SkPath*) const;
57 void strokeRRect(const SkRect& rect, SkScalar rx, SkScalar ry, SkPath*) const;
SkLineClipper.h 4 #include "SkRect.h"
24 static int ClipLine(const SkPoint pts[2], const SkRect& clip,
35 static bool IntersectLine(const SkPoint src[2], const SkRect& clip,
SkScan.h 21 #include "SkRect.h"
38 static void FillRect(const SkRect& rect, const SkRegion* clip,
43 static void FillRect(const SkRect&, const SkRegion* clip, SkBlitter*);
60 static void HairRect(const SkRect&, const SkRegion* clip, SkBlitter*);
65 static void AntiFillRect(const SkRect& rect, const SkRegion* clip,
70 static void AntiFillRect(const SkRect&, const SkRegion* clip, SkBlitter*);
77 static void AntiHairRect(const SkRect&, const SkRegion* clip, SkBlitter*);
81 static void FrameRect(const SkRect&, const SkPoint& strokeSize,
83 static void AntiFrameRect(const SkRect&, const SkPoint& strokeSize,
98 /** Assign an SkXRect from a SkRect, by promoting the src rect's coordinate
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GLExtras.h 29 #include "SkRect.h"
45 void drawGL(IntRect& webViewRect, SkRect& viewport, int titleBarHeight);
53 void drawRing(SkRect& srcRect, int* texture, int r, int g, int b, float a);
57 void drawFindOnPage(SkRect& viewport);
BaseLayerAndroid.h 62 void updateLayerPositions(SkRect& visibleRect);
64 SkRect& visibleRect, float scale);
65 bool drawGL(IntRect& viewRect, SkRect& visibleRect, float scale);
76 void prefetchBasePicture(SkRect& viewport, float currentScale,
78 bool prepareBasePictureInGL(SkRect& viewport, float scale, double currentTime);
  /external/webkit/Source/WebCore/platform/graphics/skia/
FloatRectSkia.cpp 34 #include "SkRect.h"
38 FloatRect::FloatRect(const SkRect& r)
44 FloatRect::operator SkRect() const
46 SkRect rect = { x(), y(), maxX(), maxY() };
  /external/skia/include/utils/
SkNinePatch.h 20 #include "SkRect.h"
29 static void DrawNine(SkCanvas* canvas, const SkRect& dst,
33 static void DrawMesh(SkCanvas* canvas, const SkRect& dst,
SkTextBox.h 56 void getBox(SkRect*) const;
57 void setBox(const SkRect&);
71 SkRect fBox;

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011>>