Change display memory address for multi-buffered animation
Source position: agraphics.pas line 2284
procedure ChangeVPBitMap( |
vp: pViewPort; |
bm: pBitMap; |
db: pDBufInfo |
); |
vp |
|
A pointer to a viewport |
bm |
|
This BitMap structure must be of the same layout as the one attached to the viewport (same depth, alignment, and BytesPerRow). |
db |
|
A pointer to a DBufInfo. |
Changes the area of display memory which will be displayed in a viewport. This can be used to implement double (or triple) buffering, a method of achieving smooth animation.
This will set the vp^.RasInfo^.BitMap field to the bm pointer which is passed.
When using the synchronization features, you must carefully insure that all messages have been replied to before calling FreeDBufInfo or calling ChangeVPBitMap with the same DBufInfo.
|
Allocate structure for multi-buffered animation |
|
|
Allocate a bitmap and attach bitplanes to it. |