I'm currently using DelphiX and i've got a small problem :
I draw some pictures on the DXDraw - everything is OK. But when i move the application window, the images isn't showing
Code:
  DXDraw.Surface.Fill(0);
  for t:=0 to DXImageList.Items.Count-1 do
    DXImageList.Items[t].Draw(DXDraw.Surface,t*64,0,0);
  DXDraw.Flip;
I draw the pictures with this function