1
0
Fork 0
mirror of https://github.com/italicsjenga/portability.git synced 2025-02-23 17:47:43 +11:00

OSX CTS results update

This commit is contained in:
Dzmitry Malyshau 2018-04-09 08:33:24 -04:00
parent 38d6d65e5f
commit 396ea0d6f0
2 changed files with 9 additions and 5 deletions
README.md
libportability-gfx

View file

@ -10,7 +10,7 @@ This is a prototype library implementing [Vulkan Portability Initiative](https:/
| -------------- | -- | -- | -- | - | - | - | - | - | - | - | | -------------- | -- | -- | -- | - | - | - | - | - | - | - |
| *Vulkan* | 3742 | 1393 | 101 | 0 | 0 | 2248 | 0 | 0 | 0 | 0 | | *Vulkan* | 3742 | 1393 | 101 | 0 | 0 | 2248 | 0 | 0 | 0 | 0 |
| *DX12* | 3563 | 1243 | 73 | 0 | 0 | 2247 | 0 | 0 | 0 | 0 | | *DX12* | 3563 | 1243 | 73 | 0 | 0 | 2247 | 0 | 0 | 0 | 0 |
| *Metal* | 6 | 6 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | | *Metal* | 3710 | 1260 | 66 | 0 | 0 | 2384 | 0 | 0 | 0 | 0 |
Currently stopping with: Currently stopping with:
> Unable to create Vulkan instance: VkError(ErrorIncompatibleDriver) > Unable to create Vulkan instance: VkError(ErrorIncompatibleDriver)

View file

@ -25,19 +25,23 @@ optional = true
[dependencies.gfx-hal] [dependencies.gfx-hal]
git = "https://github.com/gfx-rs/gfx" git = "https://github.com/gfx-rs/gfx"
rev = "aaf5d5d675397db783041553e290e3331516e13b" rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/hal"
[target.'cfg(not(target_os = "macos"))'.dependencies.gfx-backend-vulkan] [target.'cfg(not(target_os = "macos"))'.dependencies.gfx-backend-vulkan]
git = "https://github.com/gfx-rs/gfx" git = "https://github.com/gfx-rs/gfx"
rev = "aaf5d5d675397db783041553e290e3331516e13b" rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/vulkan"
optional = true optional = true
[target.'cfg(windows)'.dependencies.gfx-backend-dx12] [target.'cfg(windows)'.dependencies.gfx-backend-dx12]
git = "https://github.com/gfx-rs/gfx" git = "https://github.com/gfx-rs/gfx"
rev = "aaf5d5d675397db783041553e290e3331516e13b" rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/dx12"
optional = true optional = true
[target.'cfg(target_os = "macos")'.dependencies.gfx-backend-metal] [target.'cfg(target_os = "macos")'.dependencies.gfx-backend-metal]
git = "https://github.com/gfx-rs/gfx" git = "https://github.com/gfx-rs/gfx"
rev = "aaf5d5d675397db783041553e290e3331516e13b" rev = "efa0822a343489f3c72df9537628c1283179a6df"
#path = "../../gfx/src/backend/metal"
optional = true optional = true