/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
D | GLES20Canvas.java | 582 public void drawTexture(BasicTexture texture, int x, int y, int width, int height) { in drawTexture() argument 586 copyTextureCoordinates(texture, mTempSourceRect); in drawTexture() 588 convertCoordinate(mTempSourceRect, mTempTargetRect, texture); in drawTexture() 589 drawTextureRect(texture, mTempSourceRect, mTempTargetRect); in drawTexture() 592 private static void copyTextureCoordinates(BasicTexture texture, RectF outRect) { in copyTextureCoordinates() argument 595 int right = texture.getWidth(); in copyTextureCoordinates() 596 int bottom = texture.getHeight(); in copyTextureCoordinates() 597 if (texture.hasBorder()) { in copyTextureCoordinates() 607 public void drawTexture(BasicTexture texture, RectF source, RectF target) { in drawTexture() argument 614 convertCoordinate(mTempSourceRect, mTempTargetRect, texture); in drawTexture() [all …]
|
D | GLES11Canvas.java | 338 BasicTexture texture, int x, int y, int width, int height) { in drawBoundTexture() argument 342 if (texture.hasBorder()) { in drawBoundTexture() 344 1.0f / texture.getTextureWidth(), in drawBoundTexture() 345 1.0f / texture.getTextureHeight(), in drawBoundTexture() 346 (texture.getWidth() - 1.0f) / texture.getTextureWidth(), in drawBoundTexture() 347 (texture.getHeight() - 1.0f) / texture.getTextureHeight()); in drawBoundTexture() 350 (float) texture.getWidth() / texture.getTextureWidth(), in drawBoundTexture() 351 (float) texture.getHeight() / texture.getTextureHeight()); in drawBoundTexture() 371 BasicTexture texture, int x, int y, int width, int height) { in drawTexture() argument 372 drawTexture(texture, x, y, width, height, mAlpha); in drawTexture() [all …]
|
D | GLCanvas.java | 96 BasicTexture texture, int x, int y, int width, int height); in drawTexture() argument 102 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target); in drawTexture() argument 105 public abstract void drawTexture(BasicTexture texture, float[] mTextureTransform, in drawTexture() argument 125 public abstract boolean unloadTexture(BasicTexture texture); in unloadTexture() argument 137 public abstract void beginRenderTarget(RawTexture texture); in beginRenderTarget() argument 149 public abstract void setTextureParameters(BasicTexture texture); in setTextureParameters() argument 158 public abstract void initializeTextureSize(BasicTexture texture, int format, int type); in initializeTextureSize() argument 166 public abstract void initializeTexture(BasicTexture texture, Bitmap bitmap); in initializeTexture() argument 179 public abstract void texSubImage2D(BasicTexture texture, int xOffset, int yOffset, in texSubImage2D() argument
|
D | FadeOutTexture.java | 28 public FadeOutTexture(BasicTexture texture) { in FadeOutTexture() argument 29 super(texture.getWidth(), texture.getHeight(), texture.isOpaque()); in FadeOutTexture() 30 mTexture = texture; in FadeOutTexture()
|
D | FadeInTexture.java | 29 public FadeInTexture(int color, TiledTexture texture) { in FadeInTexture() argument 30 super(texture.getWidth(), texture.getHeight(), texture.isOpaque()); in FadeInTexture() 32 mTexture = texture; in FadeInTexture()
|
/packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
D | GLES20Canvas.java | 336 public void drawTexture(BasicTexture texture, int x, int y, int width, int height) { in drawTexture() argument 340 copyTextureCoordinates(texture, mTempSourceRect); in drawTexture() 342 convertCoordinate(mTempSourceRect, mTempTargetRect, texture); in drawTexture() 343 drawTextureRect(texture, mTempSourceRect, mTempTargetRect); in drawTexture() 346 private static void copyTextureCoordinates(BasicTexture texture, RectF outRect) { in copyTextureCoordinates() argument 347 outRect.set(0, 0, texture.getWidth(), texture.getHeight()); in copyTextureCoordinates() 351 public void drawTexture(BasicTexture texture, RectF source, RectF target) { in drawTexture() argument 358 convertCoordinate(mTempSourceRect, mTempTargetRect, texture); in drawTexture() 359 drawTextureRect(texture, mTempSourceRect, mTempTargetRect); in drawTexture() 362 private void drawTextureRect(BasicTexture texture, RectF source, RectF target) { in drawTextureRect() argument [all …]
|
D | GLCanvas.java | 59 public abstract void drawTexture(BasicTexture texture, int x, int y, int width, int height); in drawTexture() argument 62 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target); in drawTexture() argument 68 public abstract boolean unloadTexture(BasicTexture texture); in unloadTexture() argument 82 public abstract void setTextureParameters(BasicTexture texture); in setTextureParameters() argument 91 public abstract void initializeTextureSize(BasicTexture texture, int format, int type); in initializeTextureSize() argument 99 public abstract void initializeTexture(BasicTexture texture, Bitmap bitmap); in initializeTexture() argument 112 public abstract void texSubImage2D(BasicTexture texture, int xOffset, int yOffset, in texSubImage2D() argument
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
D | PhotoFallbackEffect.java | 42 public RawTexture texture; field in PhotoFallbackEffect.Entry 44 public Entry(Path path, Rect source, RawTexture texture) { in Entry() argument 47 this.texture = texture; in Entry() 68 public void addEntry(Path path, Rect rect, RawTexture texture) { in addEntry() argument 69 mList.add(new Entry(path, rect, texture)); in addEntry() 92 if (!entry.texture.isLoaded()) return; in drawEntry() 94 int w = entry.texture.getWidth(); in drawEntry() 95 int h = entry.texture.getHeight(); in drawEntry() 117 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() 125 canvas.drawTexture(entry.texture, mSource, mTarget); in drawEntry() [all …]
|
D | AlbumSetSlotRenderer.java | 116 private static Texture checkLabelTexture(Texture texture) { in checkLabelTexture() argument 117 return ((texture instanceof UploadedTexture) in checkLabelTexture() 118 && ((UploadedTexture) texture).isUploading()) in checkLabelTexture() 120 : texture; in checkLabelTexture() 123 private static Texture checkContentTexture(Texture texture) { in checkContentTexture() argument 124 return ((texture instanceof TiledTexture) in checkContentTexture() 125 && !((TiledTexture) texture).isReady()) in checkContentTexture() 127 : texture; in checkContentTexture()
|
D | AlbumSetSlidingWindow.java | 446 TiledTexture texture = new TiledTexture(bitmap); in updateEntry() local 447 entry.bitmapTexture = texture; in updateEntry() 448 entry.content = texture; in updateEntry() 451 mContentUploader.addTexture(texture); in updateEntry() 456 mContentUploader.addTexture(texture); in updateEntry() 510 BitmapTexture texture = new BitmapTexture(bitmap); in updateEntry() local 511 texture.setOpaque(false); in updateEntry() 512 entry.labelTexture = texture; in updateEntry() 515 mLabelUploader.addFgTexture(texture); in updateEntry() 520 mLabelUploader.addBgTexture(texture); in updateEntry()
|
D | PreparePageFadeoutTexture.java | 71 RawTexture texture = null; in prepareFadeOutTexture() local 75 texture = task.get(); in prepareFadeOutTexture() 80 if (texture == null) { in prepareFadeOutTexture() 83 activity.getTransitionStore().put(KEY_FADE_TEXTURE, texture); in prepareFadeOutTexture()
|
D | AlbumSlotRenderer.java | 96 private static Texture checkTexture(Texture texture) { in checkTexture() argument 97 return (texture instanceof TiledTexture) in checkTexture() 98 && !((TiledTexture) texture).isReady() in checkTexture() 100 : texture; in checkTexture()
|
D | PhotoView.java | 1838 RawTexture texture; in buildFallbackEffect() local 1840 texture = new RawTexture(width, height, true); in buildFallbackEffect() 1841 canvas.beginRenderTarget(texture); in buildFallbackEffect() 1844 texture = new RawTexture(height, width, true); in buildFallbackEffect() 1845 canvas.beginRenderTarget(texture); in buildFallbackEffect() 1853 effect.addEntry(item.getPath(), rect, texture); in buildFallbackEffect() local
|
D | TileImageView.java | 377 Tile texture = mActiveTiles.valueAt(i); in freeTextures() local 378 texture.recycle(); in freeTextures()
|
/packages/apps/Settings/src/com/android/settings/biometrics/face/ |
D | FaceEnrollPreviewFragment.java | 122 SurfaceTexture texture = mTextureView.getSurfaceTexture(); 123 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); 126 Surface surface = new Surface(texture);
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/biometrics/face/ |
D | FaceEnrollPreviewFragment.java | 121 SurfaceTexture texture = mTextureView.getSurfaceTexture(); 122 texture.setDefaultBufferSize(mPreviewSize.getWidth(), mPreviewSize.getHeight()); 125 Surface surface = new Surface(texture);
|
/packages/services/Car/evs/app/ |
D | config.json.readme | 25 "graphic" : { // This maps the car texture into the projected view space
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 404 Tile texture = mActiveTiles.valueAt(i); in freeTextures() local 405 texture.recycle(); in freeTextures()
|
/packages/apps/WallpaperPicker/src/com/android/photos/views/ |
D | TiledImageRenderer.java | 404 Tile texture = mActiveTiles.valueAt(i); in freeTextures() local 405 texture.recycle(); in freeTextures()
|
/packages/apps/Camera2/src/com/android/camera/ |
D | CaptureModule.java | 708 SurfaceTexture texture = getPreviewSurfaceTexture(); in resume() local 711 if (texture != null) { in resume()
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |
D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |