OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Brush
(Results
1 - 2
of
2
) sorted by null
/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 100 milliseconds