billzez

Results 15 comments of billzez

pthread_rwlock_t is now an opaque type in the latest bionic/ndk: https://android.googlesource.com/platform/bionic/+/master/libc/include/pthread.h https://android.googlesource.com/platform/bionic/+/master/libc/include/bits/pthread_types.h ``` typedef struct { #if defined(__LP64__) int32_t __private[14]; #else int32_t __private[10]; #endif } pthread_rwlock_t; ``` The internal definition...

I hit this issue, and I was able to workaround it by disabling "vfp3d16sp". I'm wondering if zig is setting an illegal combination of cpu features.

Is there an ETA on this? I was surprised these fixes did not go into 0.10.

Please don't take away stage1 until we can create multi-file modules again: https://github.com/ziglang/zig/issues/13077 I have multiple projects that are blocked by this (and async/await).

I can use `@Type` for now, until its removed from the language. ``` const E = @Type(std.builtin.Type{ .ErrorSet = &[_]std.builtin.Type.Error{.{ .name = "NotFound", }}, }); var e = @field(E, "NotFound");...

I would also like this feature, and would not mind contributing it. Since a kms backend would use xkbcommon like the WIP wayland backend, I would wait until the wayland...

Maybe add a macro? ``` #if defined(__cplusplus) #define DEREF_IF_C(obj) (obj) #else #define DEREF_IF_C(obj) (*obj) #endif ``` ``` return DEREF_IF_C(self)->FindClass(self, name); ``` > Why is every little thing on Android such...

`_sapp_android_get_jni_env` is useful for accessing other android APIs, can it be made public?

Also, the `screen keyboard` row in the feature matrix needs updating.