Package com.google.gwt.canvas.dom.client.Context2d

Examples of com.google.gwt.canvas.dom.client.Context2d.Composite


  /** Sets the type of {@link Blending} to be used for all operations. Default is {@link Blending#SourceOver}.
   * @param blending the blending type */
  public static void setBlending (Blending blending) {
    Pixmap.blending = blending;
    Composite composite = getComposite();
    for (Pixmap pixmap : pixmaps.values()) {
      pixmap.context.setGlobalCompositeOperation(composite);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.canvas.dom.client.Context2d.Composite

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.