iOS lock step keyboard + metal

This commit is contained in:
agra
2026-05-18 17:40:10 +03:00
parent b43472e6ab
commit f9ecf9d00e
68 changed files with 4794 additions and 203 deletions

View File

@@ -0,0 +1,32 @@
// Sub-32-bit enum variants ride through a protocol-typed receiver's
// method call without being collapsed to tag=0.
#import "modules/std.sx";
Fmt :: enum { a; b; }
Proto :: protocol {
take_fmt :: (f: Fmt);
}
Impl :: struct {}
impl Proto for Impl {
take_fmt :: (self: *Impl, f: Fmt) {
n : s64 = xx f;
print("proto f = {}\n", n);
}
}
take :: (f: Fmt) -> s64 {
n : s64 = xx f;
n;
}
main :: () -> s32 {
print("direct a={} b={}\n", take(.a), take(.b));
p : Proto = xx @Impl.{};
p.take_fmt(.b);
p.take_fmt(.a);
0;
}