2017-12-08 23:11:54 +11:00
|
|
|
[package]
|
|
|
|
name = "portability-icd"
|
2018-03-02 14:04:47 +11:00
|
|
|
publish = false
|
2017-12-08 23:11:54 +11:00
|
|
|
version = "0.1.0"
|
2020-01-25 11:45:55 +11:00
|
|
|
edition = "2018"
|
2018-03-02 14:04:47 +11:00
|
|
|
authors = [
|
|
|
|
"Dzmitry Malyshau <kvark@mozilla.com>",
|
2018-03-15 08:24:26 +11:00
|
|
|
"Markus Siglreithmaier <m.siglreith@gmail.com>",
|
2018-03-02 14:04:47 +11:00
|
|
|
]
|
2017-12-08 23:11:54 +11:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "portability_icd"
|
2018-03-02 00:55:31 +11:00
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2020-08-23 12:38:14 +10:00
|
|
|
debug = ["portability-gfx/env_logger"]
|
2018-03-02 14:04:47 +11:00
|
|
|
dx12 = ["portability-gfx/gfx-backend-dx12"]
|
2018-06-22 22:00:34 +10:00
|
|
|
dx11 = ["portability-gfx/gfx-backend-dx11"]
|
2018-03-02 14:04:47 +11:00
|
|
|
metal = ["portability-gfx/gfx-backend-metal"]
|
|
|
|
vulkan = ["portability-gfx/gfx-backend-vulkan"]
|
2020-12-01 17:18:27 +11:00
|
|
|
gl = ["portability-gfx/gfx-backend-gl"]
|
2017-12-08 23:11:54 +11:00
|
|
|
|
|
|
|
[dependencies]
|
2018-03-02 14:04:47 +11:00
|
|
|
portability-gfx = { path = "../libportability-gfx", features = ["dispatch"] }
|