You can use the DXDraw.Surface.Canvas to draw ractangles, circles etc. using the GDI functions. Just make sure you call Release when you are done:
[pascal]with DXDraw.Surface.Canvas do try
Ellipse(10, 10, 50, 50);
// etc.
finally
Release;
end;[/pascal]