mirror of
https://github.com/italicsjenga/portability.git
synced 2024-11-22 23:11:30 +11:00
24 lines
571 B
TOML
24 lines
571 B
TOML
[package]
|
|
name = "portability-icd"
|
|
publish = false
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
|
"Markus Siglreithmaier <m.siglreith@gmail.com>",
|
|
]
|
|
|
|
[lib]
|
|
name = "portability_icd"
|
|
crate-type = ["cdylib"]
|
|
|
|
[features]
|
|
default = []
|
|
dx12 = ["portability-gfx/gfx-backend-dx12"]
|
|
dx11 = ["portability-gfx/gfx-backend-dx11"]
|
|
metal = ["portability-gfx/gfx-backend-metal"]
|
|
vulkan = ["portability-gfx/gfx-backend-vulkan"]
|
|
gl = ["portability-gfx/gfx-backend-gl"]
|
|
|
|
[dependencies]
|
|
portability-gfx = { path = "../libportability-gfx", features = ["dispatch"] }
|