HomeSort by relevance Sort by last modified time
    Searched defs:fAA (Results 1 - 24 of 24) sorted by null

  /external/skia/bench/
BlendmodeBench.cpp 19 fAA = aa;
35 if (fAA) {
64 bool fAA;
ChartBench.cpp 93 fAA = aa;
100 if (fAA) {
141 plotPaint.setAntiAlias(fAA);
146 fillPaint.setAntiAlias(fAA);
183 bool fAA;
MultitextureImageBench.cpp 23 , fAA(aa) {
67 paint.setAntiAlias(fAA);
111 bool fAA;
RotatedRectBench.cpp 72 : fAA(aa)
83 paint.setAntiAlias(fAA);
126 if (fAA) {
151 bool fAA;
PathBench.cpp 112 fAA = aa;
118 suffix.printf("rotated_rect_%s_%d", fAA ? "aa" : "noaa", fDegrees);
132 paint->setAntiAlias(fAA);
137 bool fAA;
    [all...]
  /external/skqp/bench/
BlendmodeBench.cpp 19 fAA = aa;
35 if (fAA) {
64 bool fAA;
ChartBench.cpp 93 fAA = aa;
100 if (fAA) {
141 plotPaint.setAntiAlias(fAA);
146 fillPaint.setAntiAlias(fAA);
183 bool fAA;
MultitextureImageBench.cpp 23 , fAA(aa) {
67 paint.setAntiAlias(fAA);
111 bool fAA;
RotatedRectBench.cpp 72 : fAA(aa)
83 paint.setAntiAlias(fAA);
126 if (fAA) {
151 bool fAA;
PathBench.cpp 112 fAA = aa;
118 suffix.printf("rotated_rect_%s_%d", fAA ? "aa" : "noaa", fDegrees);
132 paint->setAntiAlias(fAA);
137 bool fAA;
    [all...]
  /external/skia/gm/
drawminibitmaprect.cpp 67 DrawMiniBitmapRectGM(bool antiAlias) : fAA(antiAlias) {
69 if (fAA) {
96 paint.setAntiAlias(fAA);
132 bool fAA;
  /external/skia/src/core/
SkAAClip.h 126 SkAlpha* fAA;
SkRecords.h 203 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.
SkRasterClip.h 76 const SkAAClip& aaRgn() const { SkASSERT(!fIsBW); return fAA; }
134 SkAAClip fAA;
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
  /external/skia/tests/
DeviceLooperTest.cpp 96 // choose size values that will result in 4 quadrants, given fAA setting
102 bool fAA;
128 SkDeviceLooper looper(pmap, rc, rect, gRec[i].fAA);
  /external/skqp/gm/
drawminibitmaprect.cpp 67 DrawMiniBitmapRectGM(bool antiAlias) : fAA(antiAlias) {
69 if (fAA) {
96 paint.setAntiAlias(fAA);
132 bool fAA;
  /external/skqp/src/core/
SkAAClip.h 126 SkAlpha* fAA;
SkRecords.h 203 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.
SkRasterClip.h 76 const SkAAClip& aaRgn() const { SkASSERT(!fIsBW); return fAA; }
134 SkAAClip fAA;
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
  /external/skqp/tests/
DeviceLooperTest.cpp 96 // choose size values that will result in 4 quadrants, given fAA setting
102 bool fAA;
128 SkDeviceLooper looper(pmap, rc, rect, gRec[i].fAA);
  /external/skia/src/gpu/
GrSoftwarePathRenderer.cpp 200 , fAA(aa) {}
205 GrAA getAA() const { return fAA; }
211 GrAA fAA;
  /external/skqp/src/gpu/
GrSoftwarePathRenderer.cpp 200 , fAA(aa) {}
205 GrAA getAA() const { return fAA; }
211 GrAA fAA;
  /external/skia/samplecode/
SampleFatBits.cpp 44 fAA = false;
58 bool getAA() const { return fAA; }
59 void setAA(bool aa) { fAA = aa; }
118 bool fAA, fGrid, fShowSkeleton, fUseClip, fRectAsOval, fUseTriangle;
  /external/skqp/samplecode/
SampleFatBits.cpp 44 fAA = false;
58 bool getAA() const { return fAA; }
59 void setAA(bool aa) { fAA = aa; }
118 bool fAA, fGrid, fShowSkeleton, fUseClip, fRectAsOval, fUseTriangle;

Completed in 632 milliseconds