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

  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusBrush.h 11 * Brush API related declarations
19 // Abstract base class for various brush types
24 class Brush : public GdiplusBase
30 virtual ~Brush()
35 virtual Brush* Clone() const
37 GpBrush *brush = NULL; local
39 SetStatus(DllExports::GdipCloneBrush(nativeBrush, &brush));
41 Brush *newBrush = new Brush(brush, lastResult);
133 GpSolidFill *brush = NULL; local
464 GpLineGradient *brush = NULL; local
481 GpLineGradient *brush = NULL; local
498 GpLineGradient *brush = NULL; local
515 GpLineGradient *brush = NULL; local
533 GpLineGradient *brush = NULL; local
552 GpLineGradient *brush = NULL; local
881 GpHatch *brush = NULL; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbrush.h 4 * GDI+ brush classes
33 class Brush: public GdiplusBase
44 virtual ~Brush()
48 virtual Brush* Clone() const // each subclass must implement this
68 Brush(): nativeBrush(NULL), lastStatus(Ok) {}
69 Brush(GpBrush *brush, Status status):
70 nativeBrush(brush), lastStatus(status) {}
71 Brush(const Brush& brush)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 59 new Brush(R.drawable.brush_gauss),
60 new Brush(R.drawable.brush_marker),
61 new Brush(R.drawable.brush_spatter)
137 class Brush implements DrawStyle {
142 public Brush(int brushID) {
198 Bitmap brush; local
201 brush = createScaledBitmap(getBrush(), (int) size, (int) size, true);
208 canvas.drawBitmap(brush, mPosition[0] - s2, mPosition[1] - s2, paint);

Completed in 228 milliseconds