Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Android] Minor refactor: Remove redundant methods. #50647

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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