/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/mock/graphics/ |
MockGraphics.java | 17 package com.badlogic.gdx.backends.headless.mock.graphics; 20 import com.badlogic.gdx.Graphics; 21 import com.badlogic.gdx.graphics.Cursor; 22 import com.badlogic.gdx.graphics.GL20; 23 import com.badlogic.gdx.graphics.GL30; 24 import com.badlogic.gdx.graphics.Pixmap; 25 import com.badlogic.gdx.graphics.Cursor.SystemCursor; 26 import com.badlogic.gdx.graphics.glutils.GLVersion; 31 public class MockGraphics implements Graphics {
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/assets/loaders/ |
CubemapLoader.java | 7 import com.badlogic.gdx.graphics.Cubemap; 8 import com.badlogic.gdx.graphics.CubemapData; 9 import com.badlogic.gdx.graphics.Pixmap; 10 import com.badlogic.gdx.graphics.Pixmap.Format; 11 import com.badlogic.gdx.graphics.Texture.TextureFilter; 12 import com.badlogic.gdx.graphics.Texture.TextureWrap; 13 import com.badlogic.gdx.graphics.TextureData;
|
TextureLoader.java | 23 import com.badlogic.gdx.graphics.Pixmap;
24 import com.badlogic.gdx.graphics.Pixmap.Format;
25 import com.badlogic.gdx.graphics.Texture;
26 import com.badlogic.gdx.graphics.Texture.TextureFilter;
27 import com.badlogic.gdx.graphics.Texture.TextureWrap;
28 import com.badlogic.gdx.graphics.TextureData;
29 import com.badlogic.gdx.graphics.glutils.FileTextureData;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
ETC1TextureData.java | 17 package com.badlogic.gdx.graphics.glutils;
21 import com.badlogic.gdx.graphics.GL20;
22 import com.badlogic.gdx.graphics.Pixmap;
23 import com.badlogic.gdx.graphics.Pixmap.Format;
24 import com.badlogic.gdx.graphics.TextureData;
25 import com.badlogic.gdx.graphics.glutils.ETC1.ETC1Data;
76 if (!Gdx.graphics.supportsExtension("GL_OES_compressed_ETC1_RGB8_texture")) {
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
SortedSpriteTest.java | 22 import com.badlogic.gdx.graphics.GL20;
23 import com.badlogic.gdx.graphics.Texture;
24 import com.badlogic.gdx.graphics.g2d.Sprite;
25 import com.badlogic.gdx.graphics.g2d.SpriteBatch;
26 import com.badlogic.gdx.graphics.g2d.TextureRegion;
102 sprite.setPosition(MathUtils.random() * Gdx.graphics.getWidth(), MathUtils.random() * Gdx.graphics.getHeight());
|
TideMapAssetManagerTest.java | 22 import com.badlogic.gdx.graphics.GL20;
23 import com.badlogic.gdx.graphics.OrthographicCamera;
24 import com.badlogic.gdx.graphics.g2d.BitmapFont;
25 import com.badlogic.gdx.graphics.g2d.SpriteBatch;
45 float w = Gdx.graphics.getWidth();
46 float h = Gdx.graphics.getHeight();
75 font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond(), 10, 20);
|
TiledMapAssetManagerTest.java | 22 import com.badlogic.gdx.graphics.GL20;
23 import com.badlogic.gdx.graphics.OrthographicCamera;
24 import com.badlogic.gdx.graphics.g2d.BitmapFont;
25 import com.badlogic.gdx.graphics.g2d.SpriteBatch;
45 float w = Gdx.graphics.getWidth();
46 float h = Gdx.graphics.getHeight();
75 font.draw(batch, "FPS: " + Gdx.graphics.getFramesPerSecond(), 10, 20);
|
PixmapTest.java | 20 import com.badlogic.gdx.graphics.GL20;
21 import com.badlogic.gdx.graphics.Pixmap;
22 import com.badlogic.gdx.graphics.Texture;
23 import com.badlogic.gdx.graphics.g2d.SpriteBatch;
24 import com.badlogic.gdx.graphics.g2d.TextureRegion;
|
SpriteBatchRotationTest.java | 22 import com.badlogic.gdx.graphics.GL20;
23 import com.badlogic.gdx.graphics.Texture;
24 import com.badlogic.gdx.graphics.g2d.SpriteBatch;
53 angle += 20 * Gdx.graphics.getDeltaTime();
54 scale += vScale * Gdx.graphics.getDeltaTime();
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/ |
FreeTypeFontLoaderTest.java | 8 import com.badlogic.gdx.graphics.GL20; 9 import com.badlogic.gdx.graphics.g2d.BitmapFont; 10 import com.badlogic.gdx.graphics.g2d.SpriteBatch; 11 import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator; 12 import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGeneratorLoader; 13 import com.badlogic.gdx.graphics.g2d.freetype.FreetypeFontLoader; 14 import com.badlogic.gdx.graphics.g2d.freetype.FreetypeFontLoader.FreeTypeFontLoaderParameter;
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/ |
ClassicalShadowSystem.java | 20 import com.badlogic.gdx.graphics.Camera; 21 import com.badlogic.gdx.graphics.GL20; 22 import com.badlogic.gdx.graphics.Pixmap; 23 import com.badlogic.gdx.graphics.Texture; 24 import com.badlogic.gdx.graphics.glutils.FrameBuffer; 79 frameBuffers[SECOND_PASS] = new FrameBuffer(Pixmap.Format.RGBA8888, Gdx.graphics.getBackBufferWidth(), Gdx.graphics.getBackBufferHeight(), true);
|
MainShader.java | 20 import com.badlogic.gdx.graphics.g3d.Attributes; 21 import com.badlogic.gdx.graphics.g3d.Renderable; 22 import com.badlogic.gdx.graphics.g3d.shaders.BaseShader; 23 import com.badlogic.gdx.graphics.g3d.shaders.DefaultShader; 24 import com.badlogic.gdx.graphics.glutils.ShaderProgram; 58 shader.set(inputID, (float)Gdx.graphics.getBackBufferWidth(), (float)Gdx.graphics.getBackBufferHeight());
|
/external/libgdx/tests/gdx-tests-lwjgl3/src/com/badlogic/gdx/tests/lwjgl3/ |
MultiWindowTest.java | 6 import com.badlogic.gdx.Graphics.DisplayMode; 11 import com.badlogic.gdx.graphics.GL20; 12 import com.badlogic.gdx.graphics.Texture; 13 import com.badlogic.gdx.graphics.g2d.SpriteBatch; 38 sharedSpriteBatch.getProjectionMatrix().setToOrtho2D(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); 40 sharedSpriteBatch.draw(sharedTexture, Gdx.input.getX(), Gdx.graphics.getHeight() - Gdx.input.getY() - 1); 46 DisplayMode mode = Gdx.graphics.getDisplayMode();
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ClearActivity.java | 21 import android.graphics.Bitmap; 22 import android.graphics.BitmapFactory; 23 import android.graphics.Canvas; 24 import android.graphics.Paint; 25 import android.graphics.Path; 26 import android.graphics.PorterDuff; 27 import android.graphics.PorterDuffXfermode;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
SliderHue.java | 20 import android.graphics.Canvas; 21 import android.graphics.ColorFilter; 22 import android.graphics.LinearGradient; 23 import android.graphics.Paint; 24 import android.graphics.RectF; 25 import android.graphics.Shader; 26 import android.graphics.drawable.Drawable;
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
ContactDrawable.java | 19 import android.graphics.Bitmap; 20 import android.graphics.BitmapFactory; 21 import android.graphics.Canvas; 22 import android.graphics.Paint; 23 import android.graphics.Paint.Align; 24 import android.graphics.Rect; 25 import android.graphics.Typeface;
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ColorDrawableTest.java | 17 package android.graphics.drawable.cts; 20 import android.graphics.Bitmap; 21 import android.graphics.Bitmap.Config; 22 import android.graphics.Canvas; 23 import android.graphics.Color; 24 import android.graphics.PixelFormat; 25 import android.graphics.PorterDuff.Mode; 26 import android.graphics.PorterDuffColorFilter; 27 import android.graphics.drawable.ColorDrawable; 32 import android.graphics.cts.R [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
RectShapeTest.java | 17 package android.graphics.drawable.shapes.cts; 21 import android.graphics.Bitmap; 22 import android.graphics.Bitmap.Config; 23 import android.graphics.Canvas; 24 import android.graphics.Outline; 25 import android.graphics.Paint; 26 import android.graphics.Paint.Style; 27 import android.graphics.Rect; 28 import android.graphics.RectF; 29 import android.graphics.drawable.shapes.RectShape [all...] |
RoundRectShapeTest.java | 17 package android.graphics.drawable.shapes.cts; 21 import android.graphics.Bitmap; 22 import android.graphics.Bitmap.Config; 23 import android.graphics.Canvas; 24 import android.graphics.Outline; 25 import android.graphics.Paint; 26 import android.graphics.Paint.Style; 27 import android.graphics.Rect; 28 import android.graphics.RectF; 29 import android.graphics.drawable.shapes.RoundRectShape [all...] |
/frameworks/support/design/base/android/support/design/widget/ |
CircularBorderDrawable.java | 20 import android.graphics.Canvas; 21 import android.graphics.ColorFilter; 22 import android.graphics.LinearGradient; 23 import android.graphics.Paint; 24 import android.graphics.PixelFormat; 25 import android.graphics.Rect; 26 import android.graphics.RectF; 27 import android.graphics.Shader; 28 import android.graphics.drawable.Drawable; 29 import android.support.v4.graphics.ColorUtils [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
BitmapUtil.java | 19 import android.graphics.Bitmap; 20 import android.graphics.BitmapFactory; 21 import android.graphics.Canvas; 22 import android.graphics.Paint; 23 import android.graphics.PorterDuff.Mode; 24 import android.graphics.PorterDuffXfermode; 25 import android.graphics.Rect; 26 import android.graphics.RectF; 27 import android.graphics.drawable.Drawable; 28 import android.graphics.drawable.BitmapDrawable [all...] |
/external/droiddriver/src/io/appium/droiddriver/instrumentation/ |
InstrumentationUiDevice.java | 19 import android.graphics.Bitmap; 20 import android.graphics.Bitmap.Config; 21 import android.graphics.Canvas; 22 import android.graphics.Rect; 23 import android.graphics.RectF;
|
/external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/ |
FreetypeFontLoader.java | 1 package com.badlogic.gdx.graphics.g2d.freetype; 9 import com.badlogic.gdx.graphics.g2d.BitmapFont; 10 import com.badlogic.gdx.graphics.g2d.BitmapFont.BitmapFontData; 11 import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator.FreeTypeBitmapFontData; 12 import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator.FreeTypeFontParameter;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/ |
NodePart.java | 17 package com.badlogic.gdx.graphics.g3d.model;
19 import com.badlogic.gdx.graphics.g3d.Material;
20 import com.badlogic.gdx.graphics.g3d.Model;
21 import com.badlogic.gdx.graphics.g3d.ModelInstance;
22 import com.badlogic.gdx.graphics.g3d.Renderable;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/batches/ |
PointSpriteParticleBatch.java | 1 package com.badlogic.gdx.graphics.g3d.particles.batches; 6 import com.badlogic.gdx.graphics.GL20; 7 import com.badlogic.gdx.graphics.Mesh; 8 import com.badlogic.gdx.graphics.Texture; 9 import com.badlogic.gdx.graphics.VertexAttribute; 10 import com.badlogic.gdx.graphics.VertexAttributes; 11 import com.badlogic.gdx.graphics.VertexAttributes.Usage; 12 import com.badlogic.gdx.graphics.g3d.Material; 13 import com.badlogic.gdx.graphics.g3d.Renderable; 14 import com.badlogic.gdx.graphics.g3d.attributes.BlendingAttribute [all...] |