Kawarp Shader <3

This commit is contained in:
meowarex
2026-08-14 06:21:00 +00:00
parent 625d012e17
commit 526e424621
35 changed files with 3051 additions and 327 deletions
@@ -0,0 +1,5 @@
package androidx.compose.foundation.layout;
import androidx.compose.ui.Modifier;
public final class SizeKt {
public static Modifier fillMaxSize(Modifier modifier, float fraction) { return null; }
}
@@ -0,0 +1,6 @@
package androidx.compose.foundation.layout;
import androidx.compose.runtime.Composer;
import androidx.compose.ui.Modifier;
public final class SpacerKt {
public static void Spacer(Modifier modifier, Composer composer, int changed) {}
}
@@ -0,0 +1,5 @@
package androidx.compose.runtime;
public interface Composer {
void startReplaceGroup(int key);
void endReplaceGroup();
}
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface MutableState extends State { void setValue(Object value); }
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface SnapshotMutationPolicy {}
@@ -0,0 +1,4 @@
package androidx.compose.runtime;
public final class SnapshotStateKt {
public static MutableState mutableStateOf$default(Object value, SnapshotMutationPolicy policy, int flags, Object marker) { return null; }
}
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface State { Object getValue(); }
@@ -0,0 +1,6 @@
package androidx.compose.ui;
public interface Modifier {
/** Non-constant initialiser so javac emits a real sget-object. */
Companion Companion = new Companion();
final class Companion implements Modifier {}
}
@@ -0,0 +1,5 @@
package androidx.compose.ui.draw;
import androidx.compose.ui.Modifier;
public final class DrawModifierKt {
public static Modifier drawBehind(Modifier modifier, am0.l onDraw) { return null; }
}
@@ -0,0 +1,7 @@
package androidx.compose.ui.geometry;
public final class Size {
/** Renamed to getWidth-impl by build.sh (Kotlin value-class mangling). */
public static float getWidthImpl(long packed) { return 0f; }
/** Renamed to getHeight-impl by build.sh (Kotlin value-class mangling). */
public static float getHeightImpl(long packed) { return 0f; }
}
@@ -0,0 +1,4 @@
package androidx.compose.ui.graphics;
public final class AndroidCanvas_androidKt {
public static android.graphics.Canvas getNativeCanvas(Canvas canvas) { return null; }
}
@@ -0,0 +1,2 @@
package androidx.compose.ui.graphics;
public interface Canvas {}
@@ -0,0 +1,3 @@
package androidx.compose.ui.graphics.drawscope;
import androidx.compose.ui.graphics.Canvas;
public interface DrawContext { Canvas getCanvas(); }
@@ -0,0 +1,6 @@
package androidx.compose.ui.graphics.drawscope;
public interface DrawScope {
DrawContext getDrawContext();
/** Renamed to getSize-NH-jbRc by build.sh (Kotlin value-class mangling). */
long getSizeNHjbRc();
}