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

  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/etc1/
ETC1Compressor.java 43 if (pixmap.getFormat() != Format.RGB888 && pixmap.getFormat() != Format.RGB565) {
44 System.out.println("Converting from " + pixmap.getFormat() + " to RGB888!");
45 Pixmap tmp = new Pixmap(pixmap.getWidth(), pixmap.getHeight(), Format.RGB888);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
TextureFormatTest.java 38 nonMipMapped[2] = new Texture(file, Format.RGB888, false);
45 mipMapped[2] = new Texture(file, Format.RGB888, true);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 50 Alpha, Intensity, LuminanceAlpha, RGB565, RGBA4444, RGB888, RGBA8888;
58 if (format == RGB888) return Gdx2DPixmap.GDX2D_FORMAT_RGB888;
68 if (format == Gdx2DPixmap.GDX2D_FORMAT_RGB888) return RGB888;
359 * LuminanceAlpha the luminance is the first byte and the alpha is the second byte of the pixel. For the formats RGB888 and
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/ktx/
KTXProcessor.java 197 facePixmap = ETC1.decodeImage(new ETC1Data(levelWidth, levelHeight, ktxData, 0), Format.RGB888);
203 facePixmap = ETC1.decodeImage(etc1, Format.RGB888);
215 if (levelPixmap == null) levelPixmap = ETC1.decodeImage(levelETCData, Format.RGB888);
232 if (levelPixmap.getFormat() != Format.RGB888 && levelPixmap.getFormat() != Format.RGB565) {
234 System.out.println("Converting from " + levelPixmap.getFormat() + " to RGB888 for ETC1 compression");
235 Pixmap tmp = new Pixmap(levelPixmap.getWidth(), levelPixmap.getHeight(), Format.RGB888);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
Pixmap.java 44 Alpha, Intensity, LuminanceAlpha, RGB565, RGBA4444, RGB888, RGBA8888;
51 if (format == RGB888) return GL20.GL_RGB;
62 if (format == RGB888) return GL20.GL_UNSIGNED_BYTE;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ETC1.java 144 if (format == Format.RGB888) return 3;
145 throw new GdxRuntimeException("Can only handle RGB565 or RGB888 images");
148 /** Encodes the image via the ETC1 compression scheme. Only {@link Format#RGB565} and {@link Format#RGB888} are supported.
158 /** Encodes the image via the ETC1 compression scheme. Only {@link Format#RGB565} and {@link Format#RGB888} are supported. Adds
169 /** Takes ETC1 compressed image data and converts it to a {@link Format#RGB565} or {@link Format#RGB888} {@link Pixmap}. Does
172 * @param format either {@link Format#RGB565} or {@link Format#RGB888}
239 /** Decodes the compressed image data to RGB565 or RGB888 pixel data. Does not modify the position or limit of the
247 * @param pixelSize the pixel size, either 2 (RBG565) or 3 (RGB888) */
253 /** Encodes the image data given as RGB565 or RGB888. Does not modify the position or limit of the {@link ByteBuffer}.
258 * @param pixelSize the pixel size, either 2 (RGB565) or 3 (RGB888)
    [all...]
KTXTextureData.java 251 Pixmap pixmap = ETC1.decodeImage(etcData, Format.RGB888);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
HeightField.java 350 final int bytesPerColor = (format == Format.RGB888 ? 3 : (format == Format.RGBA8888 ? 4 : 0));
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePacker.java 360 case RGB888:
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCamera_Intf.h 1094 RGB888 = 9,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_texstate.c 88 _INVALID(RGB888),
    [all...]

Completed in 1365 milliseconds