mirror of
https://github.com/meowarex/rl-mobile.git
synced 2026-08-26 22:17:44 +10:00
Fix offline Shader + Lyric Seeking
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package coil;
|
||||
/** coil.ImageLoader; b() is enqueue(). */
|
||||
public interface f {
|
||||
coil.request.d b(coil.request.h request);
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
package coil.request;
|
||||
public enum CachePolicy { ENABLED, READ_ONLY, WRITE_ONLY, DISABLED }
|
||||
@@ -0,0 +1,19 @@
|
||||
package coil.request;
|
||||
import kotlinx.coroutines.CoroutineDispatcher;
|
||||
/**
|
||||
* coil.request.DefaultRequestOptions; i/j/k are the memory/disk/network cache policies (proven
|
||||
* via h$a.a() -> ImageRequest.o/p/q -> Options.m/n/o, the last of which HttpUriFetcher gates on).
|
||||
* Fields are deliberately non-final: a `final boolean h = false` would be a compile-time constant
|
||||
* and javac would fold the read away instead of emitting iget-boolean. (claude)
|
||||
*/
|
||||
public final class b {
|
||||
public CoroutineDispatcher a, b, c, d;
|
||||
public d0.c.a e;
|
||||
public coil.size.Precision f;
|
||||
public android.graphics.Bitmap.Config g;
|
||||
public boolean h;
|
||||
public CachePolicy i, j, k;
|
||||
public b(CoroutineDispatcher a, CoroutineDispatcher b, CoroutineDispatcher c, CoroutineDispatcher d,
|
||||
d0.c.a transition, coil.size.Precision precision, android.graphics.Bitmap.Config config,
|
||||
boolean h, CachePolicy memory, CachePolicy disk, CachePolicy network) {}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package coil.request;
|
||||
/** coil.request.Disposable */
|
||||
public interface d {}
|
||||
@@ -0,0 +1,12 @@
|
||||
package coil.request;
|
||||
/** coil.request.ImageRequest; a(h) is newBuilder(), h.a is the Builder. */
|
||||
public final class h {
|
||||
public static a a(h request) { return null; }
|
||||
public static final class a {
|
||||
/** defaults block the built request copies its cache policies from */
|
||||
public b b;
|
||||
/** target */
|
||||
public b0.c d;
|
||||
public h a() { return null; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
package coil.size;
|
||||
public enum Precision { EXACT, INEXACT, AUTOMATIC }
|
||||
Reference in New Issue
Block a user