Screen buffer structure
Source position: intuition.pas line 1640
type TScreenBuffer = record |
||
sb_BitMap: PBitMap; |
|
BitMap of this buffer |
sb_DBufInfo: PDBufInfo; |
|
DBufInfo for this buffer |
end; |
Intuition supports double-buffering in screens, with friendly interaction with menus and certain gadgets. For each buffer, you need to get one of these structures from the AllocScreenBuffer() call. Never allocate your own ScreenBuffer structures! The sb_DBufInfo field is for your use.
|
Allocate structure for multi-buffered animation |