/// <summary> /// Forces execution of all operations currently on the stack. /// </summary> public void Flush(FlushIntention intention) { int status = SafeNativeMethods.Gdip.GdipFlush(new HandleRef(this, NativeGraphics), intention); SafeNativeMethods.Gdip.CheckStatus(status); FlushCore(); }
public void Flush(FlushIntention intention) { if (context == null) { return; } throw new NotImplementedException(); }
// Flush the graphics subsystem public override void Flush(FlushIntention intention) { if (intention == FlushIntention.Flush) { ((DrawingToolkit)Toolkit).app.Display.Flush(); } else { ((DrawingToolkit)Toolkit).app.Display.Sync(); } }
public void Flush(FlushIntention intention) { throw new NotImplementedException(); }
public void Flush(FlushIntention intention) { _g.Flush(intention); }
public void Flush(FlushIntention intention) { GdiPlus.GdipFlush(nativeGraphics, intention); }
/// <summary> /// Does nothing /// </summary> /// <param name="intention"></param> public void Flush(FlushIntention intention) { //nothing to do }
public void Flush(FlushIntention intention) { this.baseGraphics.Flush(intention); }
public void Flush(FlushIntention intention) { graphics.Flush(intention); }
// Flush the graphics subsystem public virtual void Flush(FlushIntention intention) { // Nothing to do in the base class. }
public void Flush(FlushIntention intention) { _image.Flush(); }
public void Flush(FlushIntention intention) { throw null; }
public void Flush(FlushIntention intention) { lock(this) { if(graphics != null) { graphics.Flush(intention); } } }
// Not implementing Flush public override void Flush(FlushIntention intention) { }
public static extern GdiPlusStatus GdipFlush ( IntPtr graphics, FlushIntention intention );
// Flush the graphics subsystem public override void Flush(FlushIntention intention) { if(intention == FlushIntention.Flush) { ((DrawingToolkit)Toolkit).app.Display.Flush(); } else { ((DrawingToolkit)Toolkit).app.Display.Sync(); } }
public void Flush (FlushIntention intention) { if (nativeObject == IntPtr.Zero) { return; } Status status = GDIPlus.GdipFlush (nativeObject, intention); GDIPlus.CheckStatus (status); if (GDIPlus.UseCarbonDrawable && context.ctx != IntPtr.Zero) Carbon.CGContextSynchronize (context.ctx); }
public void Flush (FlushIntention intention) { if (nativeObject == IntPtr.Zero) { return; } Status status = GDIPlus.GdipFlush (nativeObject, intention); GDIPlus.CheckStatus (status); if (maccontext != null) maccontext.Synchronize (); }
internal static extern Status GdipFlush(IntPtr graphics, FlushIntention intention);
GdipFlush(GpGraphics graphics, FlushIntention intention);
/// <include file='doc\Graphics.uex' path='docs/doc[@for="Graphics.Flush1"]/*' /> /// <devdoc> /// <para> /// Forces execution of all operations currently on the stack. /// </para> /// </devdoc> public void Flush(FlushIntention intention) { int status = SafeNativeMethods.Gdip.GdipFlush(new HandleRef(this, this.NativeGraphics), intention); if (status != SafeNativeMethods.Gdip.Ok) { throw SafeNativeMethods.Gdip.StatusException(status); } }
public void Flush(FlushIntention intention) { if (context == null) return; throw new NotImplementedException (); }
internal static extern int GdipFlush(HandleRef graphics, FlushIntention intention);
public void Flush (FlushIntention intention) { if (_image != null) _image.NativeObject.CurrentImage.NativeImage.flush(); }
public void Flush(FlushIntention intention) { NativeMethods.GdipFlush(nativeGraphics, intention); }
internal static extern GpStatus GdipFlush(GpGraphics graphics, FlushIntention intention);
public abstract void Flush(FlushIntention intention);
extern static internal GpStatus GdipFlush(GpGraphics graphics, FlushIntention intention);