Home
last modified time | relevance | path

Searched refs:fAA (Results 1 – 25 of 28) sorted by relevance

12

/external/skqp/src/core/
DSkRasterClip.cpp134 fAA = src.fAA; in SkRasterClip()
172 bool isEqual = fIsBW ? fBW == other.fBW : fAA == other.fAA; in operator ==()
183 return fIsBW ? fBW.isComplex() : !fAA.isEmpty(); in isComplex()
187 return fIsBW ? fBW.getBounds() : fAA.getBounds(); in getBounds()
195 fAA.setEmpty(); in setEmpty()
205 fAA.setEmpty(); in setRect()
238 (void)fAA.setPath(path, &clip, doAA); in setPath()
308 fIsBW ? fBW.op(rect, op) : fAA.op(rect, op); in op()
320 (void)fAA.op(tmp, op); in op()
344 (void)fAA.op(*other, op); in op()
[all …]
DSkRasterClip.h76 const SkAAClip& aaRgn() const { SkASSERT(!fIsBW); return fAA; } in aaRgn()
134 SkAAClip fAA; variable
142 return fIsBW ? fBW.isEmpty() : fAA.isEmpty(); in computeIsEmpty()
146 return fIsBW ? fBW.isRect() : fAA.isRect(); in computeIsRect()
153 if (detectAARect && !fIsEmpty && !fIsBW && fAA.isRect()) {
154 fBW.setRect(fAA.getBounds());
155 fAA.setEmpty(); // don't need this guy anymore
DSkRecords.h203 ClipOpAndAA(SkClipOp op, bool aa) : fOp(static_cast<unsigned>(op)), fAA(aa) {}
206 bool aa() const { return fAA != 0; }
210 unsigned fAA : 1; // MSVC won't pack an enum with an bool, so we call this an unsigned.
DSkAAClip.h126 SkAlpha* fAA; variable
/external/skia/src/core/
DSkRasterClip.cpp134 fAA = src.fAA; in SkRasterClip()
172 bool isEqual = fIsBW ? fBW == other.fBW : fAA == other.fAA; in operator ==()
183 return fIsBW ? fBW.isComplex() : !fAA.isEmpty(); in isComplex()
187 return fIsBW ? fBW.getBounds() : fAA.getBounds(); in getBounds()
195 fAA.setEmpty(); in setEmpty()
205 fAA.setEmpty(); in setRect()
238 (void)fAA.setPath(path, &clip, doAA); in setPath()
308 fIsBW ? fBW.op(rect, op) : fAA.op(rect, op); in op()
320 (void)fAA.op(tmp, op); in op()
344 (void)fAA.op(*other, op); in op()
[all …]
DSkRasterClip.h76 const SkAAClip& aaRgn() const { SkASSERT(!fIsBW); return fAA; } in aaRgn()
134 SkAAClip fAA; variable
142 return fIsBW ? fBW.isEmpty() : fAA.isEmpty(); in computeIsEmpty()
146 return fIsBW ? fBW.isRect() : fAA.isRect(); in computeIsRect()
153 if (detectAARect && !fIsEmpty && !fIsBW && fAA.isRect()) {
154 fBW.setRect(fAA.getBounds());
155 fAA.setEmpty(); // don't need this guy anymore
DSkRecords.h203 ClipOpAndAA(SkClipOp op, bool aa) : fOp(static_cast<unsigned>(op)), fAA(aa) {}
206 bool aa() const { return fAA != 0; }
210 unsigned fAA : 1; // MSVC won't pack an enum with an bool, so we call this an unsigned.
DSkAAClip.h126 SkAlpha* fAA; variable
/external/skqp/bench/
DChartBench.cpp93 fAA = aa; in ChartBench()
100 if (fAA) { in onGetName()
141 plotPaint.setAntiAlias(fAA); in onDraw()
146 fillPaint.setAntiAlias(fAA); in onDraw()
183 bool fAA; member in ChartBench
DRotatedRectBench.cpp72 : fAA(aa) in RotRectBench()
83 paint.setAntiAlias(fAA); in onDraw()
126 if (fAA) { in makeName()
151 bool fAA; member in RotRectBench
DBlendmodeBench.cpp19 fAA = aa; in XfermodeBench()
35 if (fAA) { in onDraw()
64 bool fAA; member in XfermodeBench
DMultitextureImageBench.cpp23 , fAA(aa) { in MultitextureImages()
67 paint.setAntiAlias(fAA); in onDraw()
111 bool fAA; member in MultitextureImages
/external/skia/bench/
DChartBench.cpp93 fAA = aa; in ChartBench()
100 if (fAA) { in onGetName()
141 plotPaint.setAntiAlias(fAA); in onDraw()
146 fillPaint.setAntiAlias(fAA); in onDraw()
183 bool fAA; member in ChartBench
DRotatedRectBench.cpp72 : fAA(aa) in RotRectBench()
83 paint.setAntiAlias(fAA); in onDraw()
126 if (fAA) { in makeName()
151 bool fAA; member in RotRectBench
DBlendmodeBench.cpp19 fAA = aa; in XfermodeBench()
35 if (fAA) { in onDraw()
64 bool fAA; member in XfermodeBench
DMultitextureImageBench.cpp23 , fAA(aa) { in MultitextureImages()
67 paint.setAntiAlias(fAA); in onDraw()
111 bool fAA; member in MultitextureImages
DPathBench.cpp112 fAA = aa; in RotatedRectBench()
118 suffix.printf("rotated_rect_%s_%d", fAA ? "aa" : "noaa", fDegrees); in appendName()
132 paint->setAntiAlias(fAA); in setupPaint()
137 bool fAA; member in RotatedRectBench
/external/skia/gm/
Ddrawminibitmaprect.cpp67 DrawMiniBitmapRectGM(bool antiAlias) : fAA(antiAlias) { in DrawMiniBitmapRectGM()
69 if (fAA) { in DrawMiniBitmapRectGM()
96 paint.setAntiAlias(fAA); in onDraw()
132 bool fAA; member in DrawMiniBitmapRectGM
/external/skqp/gm/
Ddrawminibitmaprect.cpp67 DrawMiniBitmapRectGM(bool antiAlias) : fAA(antiAlias) { in DrawMiniBitmapRectGM()
69 if (fAA) { in DrawMiniBitmapRectGM()
96 paint.setAntiAlias(fAA); in onDraw()
132 bool fAA; member in DrawMiniBitmapRectGM
/external/skia/tests/
DDeviceLooperTest.cpp102 bool fAA; in test_complex() member
128 SkDeviceLooper looper(pmap, rc, rect, gRec[i].fAA); in test_complex()
/external/skqp/tests/
DDeviceLooperTest.cpp102 bool fAA; in test_complex() member
128 SkDeviceLooper looper(pmap, rc, rect, gRec[i].fAA); in test_complex()
/external/skia/samplecode/
DSampleFatBits.cpp44 fAA = false; in FatBits()
58 bool getAA() const { return fAA; } in getAA()
59 void setAA(bool aa) { fAA = aa; } in setAA()
118 bool fAA, fGrid, fShowSkeleton, fUseClip, fRectAsOval, fUseTriangle; member in FatBits
/external/skqp/samplecode/
DSampleFatBits.cpp44 fAA = false; in FatBits()
58 bool getAA() const { return fAA; } in getAA()
59 void setAA(bool aa) { fAA = aa; } in setAA()
118 bool fAA, fGrid, fShowSkeleton, fUseClip, fRectAsOval, fUseTriangle; member in FatBits
/external/skqp/src/gpu/
DGrSoftwarePathRenderer.cpp200 , fAA(aa) {} in SoftwarePathData()
205 GrAA getAA() const { return fAA; } in getAA()
211 GrAA fAA; member in __anon5f6e6ac70111::SoftwarePathData
/external/skia/src/gpu/
DGrSoftwarePathRenderer.cpp200 , fAA(aa) {} in SoftwarePathData()
205 GrAA getAA() const { return fAA; } in getAA()
211 GrAA fAA; member in __anon934451100111::SoftwarePathData

12