hikari_no_yume

Results 417 comments of hikari_no_yume

Uhh, did you miss my comment about the Developer Certificate of Origin from earlier? I don't need you to actually sign all the commits or anything, but if you can...

I've merged most of these now, thanks a lot! I've commented on the remaining ones that I noticed needed fixes, and the rest are things that I don't want to...

> Add stub for [UIView setExclusiveTouch:] (unless you don't want to merge this) I want to skip this for the time being since I'm pretty sure we wouldn't use the...

Oh really? Hmm, maybe I need to re-read the application lifecycle docs. I've now cherry-picked what I think are all the remaining ones: ``` $ git log -4 --pretty=oneline a295b05cf7ee1a44350acb49b8f273b53dded2ec...

I've acknowledged your changes in the changelog and credited you via your GitHub username: f061f63e6e9f4e6864d4e4a2b31352984024afb7. If you'd prefer to be credited in a different way, please let me know!

@upintheairsheep My time isn't free and I don't want to have to deal with tons of questions from novice users all the time. With that said, I understand what you're...

> How big of a performance hit are we talking here? I haven't measured it myself, but [Google's documentation](https://developer.android.com/games/optimize/vulkan-prerotation) mentions “1-3ms hits to frametimes” and that if this is avoided...

Oh, right, an important caveat is that some OpenGL ES drivers will silently do this “pre-rotation” behind the scenes, so that's another way that it can be hidden. My understanding...

The behaviour on Android turns out to be weirder than I was expecting. It seems like, if I request a fullscreen window, it's always considered portrait, regardless of what width...

Oh, it seems I misunderstood what `SDL_HINT_ORIENTATIONS` does! When I read [the relevant Android code](https://github.com/libsdl-org/SDL/blob/3472dc11d6f7d22055d185724853c4dfcc0e3967/android-project/app/src/main/java/org/libsdl/app/SDLActivity.java#L982-L1046) it became much clearer. If I use that, it seems I can force a certain...