Skip to content

Commit

Permalink
[Android] Minor refactor: Remove redundant methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
0xZOne committed Feb 14, 2024
1 parent 1232d59 commit 6ba20a1
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions shell/platform/android/io/flutter/view/TextureRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ interface TextureEntry {
/** Uses a Surface to populate the texture. */
@Keep
interface SurfaceProducer extends TextureEntry {
/** @return The identity of this texture. */
long id();

/** Deregisters and releases all resources . */
void release();

/** Specify the size of this texture in physical pixels */
void setSize(int width, int height);

Expand All @@ -101,12 +95,6 @@ interface SurfaceProducer extends TextureEntry {
/** A registry entry for a managed SurfaceTexture. */
@Keep
interface SurfaceTextureEntry extends TextureEntry {
/** @return The identity of this texture. */
long id();

/** Deregisters and releases all resources . */
void release();

/** @return The managed SurfaceTexture. */
@NonNull
SurfaceTexture surfaceTexture();
Expand All @@ -120,12 +108,6 @@ default void setOnTrimMemoryListener(@Nullable OnTrimMemoryListener listener) {}

@Keep
interface ImageTextureEntry extends TextureEntry {
/** @return the identity of this ImageTextureEntry */
long id();

/** Deregisters and releases all resources. */
void release();

/**
* Next paint will update texture to use the contents of image.
*
Expand Down

0 comments on commit 6ba20a1

Please sign in to comment.