Steven Johnson
Steven Johnson
Hi @personalnadir. I mentioned this on [the forum](https://forums.solar2d.com/t/display-save-gpu-hang-occurred/354570/3) since this issue was part of what the OP described. Same question: are you able to build the engine from source, by...
Hi @personalnadir. So, assuming you have Git installed, do `git clone --recursive https://github.com/coronalabs/corona.git` into some folder. From there, go to `platform/mac` and follow the instructions at the bottom of [this...
Oh, heh, didn't know about the space thing, although I've run into the issue with plugins and their `build.sh` scripts. --- There are a few broad things I can think...
Back to 2 for a second, then. Does the `fData` look any different before and after the capture, i.e. the `fStream->CaptureFrameBuffer()` call? I mean, it seems like if it were...
Ah, you're actually seeing the _variable_ `fData` (you can see the first six bytes there are `0x7FF64322C000, only reversed), followed by the rest of `bitmap` and whatever comes after it...
Well, if it's a circle like that I'd jump down `fWidth * 4 * X` bytes (4 = RGBA, `X` = some guess for number of rows) from the value...
The Discord comments mentioning zip files reminded me of [this library](https://github.com/mattiasgustavsson/libs/blob/main/docs/assetsys.md). By the looks of it, you could use it to unify `system.ResourceDirectory`-based file accesses by mounting two "directories": the...
This might also be interesting to explore: [NSVisualEffectView](https://developer.apple.com/documentation/appkit/nsvisualeffectview)
I discovered this was happening to me and I've been driving myself crazy the last few days hunting for it. I noticed if I just tapped the keys a lot,...
In working on the **PR 5** stuff (WIP [here](https://github.com/ggcrunchy/corona/wiki/WIPs)), I realized the "Do" approach, and the discontinuities it introduced into the renderer batch, just didn't cut it. You can now...