HomeSort by relevance Sort by last modified time
    Searched refs:mipHeight (Results 1 - 4 of 4) sorted by null

  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DDSLoader.java 392 int mipHeight = height;
399 size = ((mipWidth + 3) / 4) * ((mipHeight + 3) / 4) * outBpp * 2;
401 size = mipWidth * mipHeight * outBpp / 8;
407 mipHeight = Math.max(mipHeight / 2, 1);
447 int mipHeight = height;
453 data = flipData(data, mipWidth * bpp / 8, mipHeight);
458 mipHeight = Math.max(mipHeight / 2, 1);
492 int mipHeight = height
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
TextureUtil.java 416 int mipHeight = Math.max(1, height >> i);
430 mipHeight,
440 mipHeight,
450 mipHeight,
464 mipHeight,
491 mipWidth, mipHeight,
501 mipHeight,
508 mipHeight,
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
generatemip.h 154 unsigned int mipHeight = std::max(1U, sourceHeight >> 1);
172 for (unsigned int y = 0; y < mipHeight; y++)
183 for (unsigned int y = 0; y < mipHeight; y++)
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
TextureUtil.java 264 int mipHeight = Math.max(1, height >> i);
277 mipHeight,
286 mipHeight,

Completed in 134 milliseconds