Open
Description
Is your feature request related to a problem? Please describe.
I was trying to get Bevy to build for tvOS, and wgpu was the main source of errors.
Describe the solution you'd like
Add support for tvOS. Because it's so similar to iOS, this is mostly just changing cfg(target_os = "ios")
into cfg(any(target_os = "ios", target_os = "tvos"))
. I already made some progress in this commit. I got a Bevy example to build and install, but it would immediately crash upon launch. See bevy#13058
Describe alternatives you've considered
Don't support tvOS.
Additional context
None