Berstanio
Berstanio
As I understand the discussion in this pr (https://github.com/libgdx/libgdx/pull/6016) MOE was removed for three reasons: 1. It was in many aspects behind robovm 2. Nobody was maintaining the MOE backend....
Reverts libgdx/libgdx#6887 As discussed in #6884, don't merge this before the next libGDX release @obigu could you milestone this?
Would it be possible to merge some repositories together? When trying to contribute it is a bit hard to keep track of all the different pr's and branches/commits. And it...
I have run into this issue a lot on my mac: https://stackoverflow.com/questions/66686112/apple-silicon-not-able-to-read-environment-variable-in-gradle-test In my case the PATH variable was not correctly set, so that I couldn't easily run prebuilt tasks....
If a native functions calls a java callback function with a struct parameter, the struct object will be broken on java side. For some reason NatJ constructs instead of the...
If a java exception occurs in a C callback, the CHandler tries to wrap this exception in a ObjCException. https://github.com/multi-os-engine/moe-natj/blob/393f6a636a34e64131c38a91dbdef52839693a5c/src/main/native/natj/CHandlers.cpp#L199 https://github.com/multi-os-engine/moe-natj/blob/0d387dd052e614db41106f3fd8851235e475f937/src/main/native/natj/NatJ.h#L193-L220 This will in the end call https://github.com/multi-os-engine/moe-natj/blob/393f6a636a34e64131c38a91dbdef52839693a5c/src/main/native/natj/ObjCRuntime.mm#L1282 But if...
### Description It would be great if https://github.com/kcat/openal-soft/blob/master/alc/inprogext.h could be binded to (at least I couldn't find the bindings). Even if they are marked as "in progress extensions", from my...
#### Issue details When creating a IntelliJ run configuration, the simulator target "Auto (prefers [...])" is used by default. On M1 macs, this let you only choose arm64 as architecture,...
This pr adds support for three main things (only for lwjgl3): 1. Auto switching the Output device if e.g. a headphone gets disconnected. This is mainly relevant on windows, because...
"java.io.tmpdir" is set to "/tmp" by default on MOE. https://github.com/multi-os-engine/libcore/blob/eae58129e020f95e9b4a506cea4cc90cc21b09a3/luni/src/main/java/java/lang/System.java#L851-L853 However, on iOS this path is invalid as a temporary directory. This leads to errors like this: createTempDirectory hangs indefinitly...