Sam Lantinga

Results 1866 comments of Sam Lantinga

@madebr, can you take a look at this?

The mono LED property is only set by the Logitech driver, so I'm surprised that it's showing true for the DualShock 3 controller. Can you provide your full code?

Oh, I see the problem. You're checking SDL_HasProperty(), and that returns true, because the property exists, but is set to false. Those calls should be: ```c info.has_led = SDL_GetBooleanProperty(property_id, SDL_PROP_GAMEPAD_CAP_RGB_LED_BOOLEAN,...

What’s the URL where you’re downloading the affected versions?

Sure, this sounds like a great feature for SDL 3.0. Feel free to submit a PR for it.

Can we get this in a FAQ or README somewhere so @thatcosmonaut can just point at that instead of a short rebuff to being asked this over and over?

This is a situation where a hint makes sense. I think we should ignore VK_SUBOPTIMAL_KHR by default, and all a hint to specify that the application handles pre-rotation. The expected...

> > I think we should ignore VK_SUBOPTIMAL_KHR by default > > Maybe only on Android? I really hate touching presentation stuff, most of the logic is in there specifically...

I went ahead and ignored VK_SUBOPTIMAL_KHR on Android for now.