public void RenderTo(GDISurface target, int SourceX, int SourceY, int Width, int Height, int DestX, int DestY) { NativeMethods.BitBlt(target.hDC, DestX, DestY, Width, Height, this.hDC, SourceX, SourceY, (int)GDIRop.SrcCopy); }
public GDISurface(int width, int height, GDISurface surface) { Init(width, height, surface.hDC); Create(); }
public void RenderTo(GDISurface target, int x, int y) { RenderTo(target.hDC, x, y); }