HomeSort by relevance Sort by last modified time
    Searched refs:RGB565 (Results 1 - 25 of 31) sorted by null

1 2

  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSApplicationConfiguration.java 32 /** the color format, RGB565 is the default **/
33 public int colorFormat = GLKViewDrawableColorFormat.RGB565;
IOSGraphics.java 140 if (config.colorFormat == GLKViewDrawableColorFormat.RGB565) {
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSApplicationConfiguration.java 32 /** the color format, RGB565 is the default **/
33 public GLKViewDrawableColorFormat colorFormat = GLKViewDrawableColorFormat.RGB565;
IOSGraphics.java 232 if (config.colorFormat == GLKViewDrawableColorFormat.RGB565) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
TextureFormatTest.java 39 nonMipMapped[3] = new Texture(file, Format.RGB565, false);
46 mipMapped[3] = new Texture(file, Format.RGB565, true);
ETC1Test.java 47 Pixmap pixmap = new Pixmap(32, 32, Format.RGB565);
55 pixmap = ETC1.decodeImage(encodedImage, Format.RGB565);
FrameBufferTest.java 135 frameBuffer = new FrameBuffer(Format.RGB565, 128, 128, false);
136 stencilFrameBuffer = new FrameBuffer(Format.RGB565, 128, 128, false, true);
MipMapTest.java 74 textureHW = new Texture(Gdx.files.internal("data/badlogic.jpg"), Format.RGB565, true);
76 textureSW = new Texture(Gdx.files.internal("data/badlogic.jpg"), Format.RGB565, true);
EdgeDetectionTest.java 73 fbo = new FrameBuffer(Format.RGB565, Gdx.graphics.getWidth(), Gdx.graphics.getHeight(), true);
SpriteBatchShaderTest.java 100 Pixmap pixmap = new Pixmap(32, 32, Format.RGB565);
Gdx2DTest.java 37 Texture texture = new Texture(pixmap.getWidth(), pixmap.getHeight(), Format.RGB565);
ProjectiveTextureTest.java 88 texture = new Texture(Gdx.files.internal("data/badlogic.jpg"), Format.RGB565, true);
SpriteBatchTest.java 180 texture = new Texture(32, 32, Format.RGB565);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ETC1TextureData.java 77 Pixmap pixmap = ETC1.decodeImage(data, Format.RGB565);
115 return Format.RGB565;
ETC1.java 143 if (format == Format.RGB565) return 2;
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
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)
267 /** Encodes the image data given as RGB565 or RGB888. Does not modify the position or limit of the {@link ByteBuffer}.
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/etc1/
ETC1Compressor.java 43 if (pixmap.getFormat() != Format.RGB888 && pixmap.getFormat() != Format.RGB565) {
  /hardware/qcom/media/msm8974/libc2dcolorconvert/
C2DColorConverter.h 72 RGB565 = 1,
C2DColorConverter.cpp 269 case RGB565:
370 case RGB565:
393 case RGB565:
394 return ALIGN(width, ALIGN32) * 2; // RGB565 has width as twice
447 case RGB565:
591 case RGB565:
683 if (mDstFormat == RGB565) {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 50 Alpha, Intensity, LuminanceAlpha, RGB565, RGBA4444, RGB888, RGBA8888;
56 if (format == RGB565) return Gdx2DPixmap.GDX2D_FORMAT_RGB565;
66 if (format == Gdx2DPixmap.GDX2D_FORMAT_RGB565) return RGB565;
360 * RGBA8888 the color components are stored in a single byte each in the order red, green, blue (alpha). For the formats RGB565
  /device/generic/goldfish/camera/
Converters.h 45 * RGB565 color masks
81 /* Extract red, green, and blue bytes from RGB565 word. */
85 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
93 /* Build RGB565 word from red, green, and blue bytes. */
94 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(b) << 6) | g) << 5) | r)
98 /* Extract red, green, and blue bytes from RGB565 word. */
102 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
110 /* Build RGB565 word from red, green, and blue bytes. */
111 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(r) << 6) | g) << 5) | b)
160 /* Converts RGB565 color to YUV. *
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gles2/
MipMap2D.java 65 Pixmap pixmap = new Pixmap(256, 256, Format.RGB565);
  /hardware/qcom/media/msm8996/libc2dcolorconvert/
C2DColorConverter.h 75 RGB565 = 1,
C2DColorConverter.cpp 295 case RGB565:
401 case RGB565:
426 case RGB565:
427 return ALIGN(width, ALIGN32) * 2; // RGB565 has width as twice
491 case RGB565:
645 case RGB565:
738 if (mDstFormat == RGB565) {
  /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;
50 if (format == RGB565) return GL20.GL_RGB;
61 if (format == RGB565) return GL20.GL_UNSIGNED_SHORT_5_6_5;
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_texstate.c 89 _COLOR(RGB565),
90 _COLOR_REV(RGB565),
117 _COLOR(RGB565),
118 _COLOR_REV(RGB565),
    [all...]

Completed in 4651 milliseconds

1 2