|
DRAWDIBTIME
The DRAWDIBTIME structure contains elapsed timing information for performing a set of DrawDib
operations. The DrawDibTime function resets the count and the elapsed time value for each operation each
time it is called.
typedef struct {
LONG timeCount;
LONG timeDraw;
LONG timeDecompress;
LONG timeDither;
LONG timeStretch;
LONG timeBlt;
LONG timeSetDIBits;
} DRAWDIBTIME, *LPDRAWDIBTIME;
Members
timeCount
Number of times the following operations have been performed since DrawDibTime was last called:
- Draw a bitmap on the screen.
- Decompress a bitmap.
- Dither a bitmap.
- Stretch a bitmap.
- Transfer bitmap data by using the BitBlt function.
- Transfer bitmap data by using the SetDIBits function.
timeDraw
Time to draw bitmaps.
timeDecompress
Time to decompress bitmaps.
timeDither
Time to dither bitmaps.
timeStretch
Time to stretch bitmaps.
timeBlt
Time to transfer bitmaps by using the BitBlt function.
timeSetDIBits
Time to transfer bitmaps by using the SetDIBits function.
See Also
BitBlt, DrawDibTime, SetDIBits
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|