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

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Gdx2DTest.java 45 pixmap.clear(Color.rgba8888(1, 0, 0, 0.1f));
46 pixmap.setPixel(16, 16, Color.rgba8888(0, 0, 1, 1));
51 clearColor = Color.rgba8888(1, 1, 1, 0.1f);
52 pixelColor = Color.rgba8888(1, 1, 1, 1);
55 clearColor = 0x36363619; // Color.rgba8888(1, 1, 1, 0.1f);
59 clearColor = Color.rgba8888(1, 0, 0, 1);
60 pixelColor = Color.rgba8888(0, 0, 1, 1);
63 clearColor = Color.rgba8888(1, 0, 0, 1);
64 pixelColor = Color.rgba8888(0, 0, 1, 1);
68 pixelColor = Color.rgba8888(0, 0, 1, 1);
    [all...]
BlitTest.java 28 Texture rgba8888; field in class:BlitTest
35 rgba8888 = new Texture("data/bobargb8888-32x32.png");
47 batch.draw(rgba8888, 60, 0);
57 rgba8888.dispose();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Color.java 76 public Color (int rgba8888) {
77 rgba8888ToColor(this, rgba8888);
396 public static int rgba8888 (float r, float g, float b, float a) { method in class:Color
416 public static int rgba8888 (Color color) { method in class:Color
458 /** Sets the Color components using the specified integer value in the format RGBA8888. This is inverse to the rgba8888(r, g,
462 * @param value An integer color value in RGBA8888 format. */
Pixmap.java 50 Alpha, Intensity, LuminanceAlpha, RGB565, RGBA4444, RGB888, RGBA8888;
59 if (format == RGBA8888) return Gdx2DPixmap.GDX2D_FORMAT_RGBA8888;
69 if (format == Gdx2DPixmap.GDX2D_FORMAT_RGBA8888) return RGBA8888;
159 * @param color the color, encoded as RGBA8888 */
171 color = Color.rgba8888(r, g, b, a);
177 this.color = Color.rgba8888(color.r, color.g, color.b, color.a);
294 /** Returns the 32-bit RGBA8888 value of the pixel at x, y. For Alpha formats the RGB components will be one.
298 * @return The pixel color in RGBA8888 format. */
332 * @param color the color in RGBA8888 format. */
360 * RGBA8888 the color components are stored in a single byte each in the order red, green, blue (alpha). For t (…)
    [all...]
PixmapIO.java 258 boolean rgba8888 = pixmap.getFormat() == Format.RGBA8888;
261 if (rgba8888) {
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeType.java 617 pixmap = new Pixmap(width, rows, Format.RGBA8888);
618 int rgba = Color.rgba8888(color);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
OcclusionBuffer.java 312 debugPixmap = new Pixmap(bufferWidth, bufferHeight, Pixmap.Format.RGBA8888);
335 debugPixmap.drawPixel(x, y, Color.rgba8888(c, c, c, 1));

Completed in 1200 milliseconds