HomeSort by relevance Sort by last modified time
    Searched full:argb8 (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TexturePixel.java 68 * Copies the values from the given integer that stores the ARGB8 data.
70 * @param argb8
73 public void fromARGB8(int argb8) {
74 byte pixelValue = (byte) ((argb8 & 0xFF000000) >> 24);
76 pixelValue = (byte) ((argb8 & 0xFF0000) >> 16);
78 pixelValue = (byte) ((argb8 & 0xFF00) >> 8);
80 pixelValue = (byte) (argb8 & 0xFF);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderDDS.java 78 int argb8 = colors[i].toARGB8(); local
79 short rgb565 = RGB565.ARGB8_to_RGB565(argb8);

Completed in 39 milliseconds