Searched refs:fAA (Results 1 - 17 of 17) sorted by relevance

/external/skia/src/core/
H A DSkRasterClip.cpp134 fAA = src.fAA;
172 bool isEqual = fIsBW ? fBW == other.fBW : fAA == other.fAA;
183 return fIsBW ? fBW.isComplex() : !fAA.isEmpty();
187 return fIsBW ? fBW.getBounds() : fAA.getBounds();
195 fAA.setEmpty();
205 fAA.setEmpty();
233 // TODO: since we are going to over-write fAA completely (aren't we?)
238 (void)fAA
[all...]
H A DSkRasterClip.h76 const SkAAClip& aaRgn() const { SkASSERT(!fIsBW); return fAA; }
134 SkAAClip fAA; member in class:SkRasterClip
142 return fIsBW ? fBW.isEmpty() : fAA.isEmpty();
146 return fIsBW ? fBW.isRect() : fAA.isRect();
153 if (detectAARect && !fIsEmpty && !fIsBW && fAA.isRect()) {
154 fBW.setRect(fAA.getBounds());
155 fAA.setEmpty(); // don't need this guy anymore
H A DSkAAClip.h126 SkAlpha* fAA; member in class:SkAAClipBlitter
H A DSkAAClip.cpp1931 // we use this either for fRuns + fAA, or a scaline of a mask
1935 fAA = (SkAlpha*)(fRuns + count);
1960 expandToRuns(row, initialCount, width, fRuns, fAA);
1962 fBlitter->blitAntiH(x, y, fAA, fRuns);
2018 merge(row, initialCount, aa, runs, fAA, fRuns, fAAClipBounds.width());
2019 fBlitter->blitAntiH(x, y, fAA, fRuns);
/external/skia/bench/
H A DXfer4fBench.cpp41 fAA = fAAStorage;
43 fAA = nullptr;
55 fProcN(fMode, fDst, fSrc, N, fAA);
57 fProc1(fMode, fDst, fSrc, N, fAA);
67 const SkAlpha* fAA; member in class:XferD32Bench
H A DXferF16Bench.cpp40 fAA = fAAStorage;
42 fAA = nullptr;
54 fProcN(fMode, fDst, fSrc, N, fAA);
56 fProc1(fMode, fDst, fSrc, N, fAA);
66 const SkAlpha* fAA; member in class:XferF16Bench
H A DXfermodeBench.cpp19 fAA = aa;
35 if (fAA) {
64 bool fAA; member in class:XfermodeBench
H A DChartBench.cpp93 fAA = aa;
100 if (fAA) {
144 plotPaint.setAntiAlias(fAA);
149 fillPaint.setAntiAlias(fAA);
186 bool fAA; member in class:ChartBench
H A DRotatedRectBench.cpp72 : fAA(aa)
83 paint.setAntiAlias(fAA);
126 if (fAA) {
151 bool fAA; member in class:RotRectBench
H A DPathBench.cpp118 fAA = aa;
124 suffix.printf("rotated_rect_%s_%d", fAA ? "aa" : "noaa", fDegrees);
138 paint->setAntiAlias(fAA);
143 bool fAA; member in class:RotatedRectBench
/external/skia/gm/
H A Ddrawminibitmaprect.cpp70 DrawMiniBitmapRectGM(bool antiAlias) : fAA(antiAlias) {
72 if (fAA) {
99 paint.setAntiAlias(fAA);
135 bool fAA; member in class:DrawMiniBitmapRectGM
/external/skia/experimental/DrawingBoard/
H A DSampleDrawingClient.cpp48 fAA = false;
68 menu->appendSwitch("Anti-Aliasing", "AA", this->getSinkID(), fAA);
123 if (SkOSMenu::FindSwitchState(evt, "AA", &fAA) ||
223 p.setAntiAlias(fAA);
267 bool fAA; member in class:DrawingClientView
/external/skia/tests/
H A DDeviceLooperTest.cpp96 // choose size values that will result in 4 quadrants, given fAA setting
102 bool fAA; member in struct:__anon17219
128 SkDeviceLooper looper(pmap, rc, rect, gRec[i].fAA);
/external/skia/include/private/
H A DSkRecords.h197 ClipOpAndAA(SkClipOp op, bool aa) : fOp(static_cast<unsigned>(op)), fAA(aa) {}
200 bool aa() const { return fAA != 0; }
204 unsigned fAA : 1; // MSVC won't pack an enum with an bool, so we call this an unsigned. member in struct:SkRecords::ClipOpAndAA
/external/skia/samplecode/
H A DSampleFatBits.cpp43 fAA = false;
57 bool getAA() const { return fAA; }
58 void setAA(bool aa) { fAA = aa; }
115 bool fAA, fGrid, fShowSkeleton, fUseClip, fRectAsOval, fUseTriangle; member in class:FatBits
/external/skia/src/gpu/ops/
H A DGrDrawPathOp.cpp21 , fAA(aa) {}
43 args.fFlags = GrAA::kYes == fAA ? GrPipeline::kHWAntialias_Flag : 0;
H A DGrDrawPathOp.h62 GrAA fAA; member in class:GrDrawPathOpBase

Completed in 232 milliseconds