directdraw

Started by
1 comment, last by Aardvajk 18 years, 2 months ago
How can draw shapes( lines, rectangles or elipse) with mouse on diretdraw surface? I display video image on the same dircetdraw surface. thanks
Advertisement
You need to lock the surface, write bytes to the pointer returned, then unlock it. That means that you also need to write code to draw circles, lines, etc to a memory buffer.

Or use Direct3D in 2D mode, it's far easier, more flexible and most likely faster too.
If you are familiar with the Windows GDI for drawing shapes in normal windows, you can get a device context for the DirectDraw surface with Surface->GetDC(), draw on it using all the normal GDI functions then call ->ReleaseDC(). This is not particularly fast however.

This topic is closed to new replies.

Advertisement