added a method fo copying onscreen regions from one point to another

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6718 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adi Oanca 2004-02-24 11:50:10 +00:00
parent 36a7951646
commit 82cde293d6

View File

@ -157,11 +157,13 @@ class DisplayDriver
public:
DisplayDriver(void);
virtual ~DisplayDriver(void);
// Graphics calls implemented in DisplayDriver
void CopyBits(const BRect &src, const BRect &dest);
void CopyRegion(BRegion *src, const BPoint &lefttop);
void DrawBitmap(ServerBitmap *bitmap, const BRect &source, const BRect &dest, const DrawData *d);
// one more:
void CopyRegionList(BList* list, BList* pList, int32 rCount, BRegion* clipReg);
void FillArc(const BRect &r, const float &angle, const float &span, RGBColor &color);
void FillArc(const BRect &r, const float &angle, const float &span, const DrawData *d);