mellinoe / vk

Low-level Vulkan bindings for .NET.
Other
176 stars 35 forks source link

[NET6-android] GetVulkanName throws PlatformNotSupportedException #29

Closed SupinePandora43 closed 3 years ago

SupinePandora43 commented 3 years ago

The Problem

https://github.com/mellinoe/vk/blob/3977adea87a3bc7075f02f20837498026feda93d/src/vk/Commands.cs#L29 RuntimeInformation.IsOSPlatform(OSPlatform.Linux) returns false

Possible Solutions

Use System.Environment.OSVersion

image

NET5 and above

use System.OperatingSystem.IsAndroid

PR: https://github.com/mellinoe/vk/pull/30

To Reproduce:

https://github.com/SupinePandora43/net6-mobile-samples

migrated from https://github.com/mellinoe/veldrid/issues/365