Package org.eclipse.swt.internal.carbon

Examples of org.eclipse.swt.internal.carbon.BitMap


  iconPMap.pixelSize = (short)bpp;
  iconPMap.pixelFormat = (short)bpp;
  OS.memcpy(iconPtr[0], iconPMap, PixMap.sizeof);

  /* Initialize the mask */
  BitMap iconMask = new BitMap();
  iconMask.rowBytes = (short)maskBpl;
  iconMask.right = (short)width;
  iconMask.bottom = (short)height;
  OS.memcpy(iconPtr[0] + PixMap.sizeof, iconMask, BitMap.sizeof);

View Full Code Here

TOP

Related Classes of org.eclipse.swt.internal.carbon.BitMap

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.