Searched refs:sBitmapDrawingEngine (Results 1 - 3 of 3) sorted by relevance

/haiku/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp953 static BitmapDrawingEngine* sBitmapDrawingEngine = NULL; local
956 if (sBitmapDrawingEngine == NULL)
957 sBitmapDrawingEngine = new(std::nothrow) BitmapDrawingEngine();
958 if (sBitmapDrawingEngine == NULL
959 || sBitmapDrawingEngine->SetSize(width, height) != B_OK) {
978 sBitmapDrawingEngine->FillRect(rect, buttonColor);
981 _DrawBevelRect(sBitmapDrawingEngine, rect, tab->closePressed,
988 _DrawBlendedRect(sBitmapDrawingEngine, rect, tab->closePressed,
999 sBitmapDrawingEngine->FillRect(rect, buttonColorLight1);
1002 sBitmapDrawingEngine
[all...]
/haiku/src/add-ons/decorators/FlatDecorator/
H A DFlatDecorator.cpp847 static BitmapDrawingEngine* sBitmapDrawingEngine = NULL; local
850 if (sBitmapDrawingEngine == NULL)
851 sBitmapDrawingEngine = new(std::nothrow) BitmapDrawingEngine();
852 if (sBitmapDrawingEngine == NULL
853 || sBitmapDrawingEngine->SetSize(width, height) != B_OK)
864 _DrawBlendedRect(sBitmapDrawingEngine, rect, down, colors);
866 _DrawBlendedRect(sBitmapDrawingEngine, rect, true, colors);
871 sBitmapDrawingEngine->FillRect(rect, B_TRANSPARENT_COLOR);
879 _DrawBlendedRect(sBitmapDrawingEngine, zoomRect, down, colors);
881 _DrawBlendedRect(sBitmapDrawingEngine, zoomRec
[all...]
/haiku/src/servers/app/decorator/
H A DDefaultDecorator.cpp778 static BitmapDrawingEngine* sBitmapDrawingEngine = NULL; local
781 if (sBitmapDrawingEngine == NULL)
782 sBitmapDrawingEngine = new(std::nothrow) BitmapDrawingEngine();
783 if (sBitmapDrawingEngine == NULL
784 || sBitmapDrawingEngine->SetSize(width, height) != B_OK)
794 _DrawBlendedRect(sBitmapDrawingEngine, rect, down, colors);
799 sBitmapDrawingEngine->FillRect(rect, B_TRANSPARENT_COLOR);
806 _DrawBlendedRect(sBitmapDrawingEngine, zoomRect, down, colors);
812 _DrawBlendedRect(sBitmapDrawingEngine, zoomRect, down, colors);
820 UtilityBitmap* bitmap = sBitmapDrawingEngine
[all...]

Completed in 115 milliseconds