Examples of PixelComponents


Examples of fcagnin.jglsdk.glimg.ImageFormat.PixelComponents

    } else {
      return false;
    }
   
    // Unsigned normalized integers. Check for RGB or RGBA components.
    PixelComponents convertableFormats[] = {PixelComponents.COLOR_RGB, PixelComponents.COLOR_RGBX, PixelComponents.COLOR_RGBA};
   
    if (Util.isOneOfThese(imageFormat.getPixelComponents(), convertableFormats)) {
      return true;
    }
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.