2017-12-08 23:11:54 +11:00
|
|
|
[package]
|
|
|
|
name = "portability-gfx"
|
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>",
|
2019-02-08 07:41:38 +11:00
|
|
|
"Joshua Groves <josh@joshgroves.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_gfx"
|
|
|
|
|
2017-12-27 05:45:31 +11:00
|
|
|
[features]
|
|
|
|
default = []
|
2018-03-02 14:04:47 +11:00
|
|
|
dispatch = []
|
2020-01-20 08:17:27 +11:00
|
|
|
nightly = ["gfx-auxil"]
|
2018-07-12 07:01:52 +10:00
|
|
|
metal-capture = ["gfx-backend-metal/auto-capture"]
|
2017-12-27 05:45:31 +11:00
|
|
|
|
2017-12-09 05:18:18 +11:00
|
|
|
[dependencies]
|
2019-03-20 01:04:07 +11:00
|
|
|
copyless = "0.1.1"
|
2020-08-22 13:13:29 +10:00
|
|
|
env_logger = { version = "0.7", optional = true }
|
2020-03-27 15:38:01 +11:00
|
|
|
lazy_static = "1"
|
2018-07-19 08:09:32 +10:00
|
|
|
log = { version = "0.4", features = ["release_max_level_error"] }
|
2020-08-23 15:19:16 +10:00
|
|
|
parking_lot = "0.11"
|
2020-09-23 15:31:59 +10:00
|
|
|
smallvec = "1"
|
2020-04-11 14:25:18 +10:00
|
|
|
renderdoc = { version = "0.3", optional = true }
|
2020-08-22 13:13:29 +10:00
|
|
|
typed-arena = "2"
|
2018-06-01 07:29:07 +10:00
|
|
|
|
2020-03-27 15:38:01 +11:00
|
|
|
[dependencies.hal]
|
|
|
|
package = "gfx-hal"
|
2017-12-20 08:28:57 +11:00
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
2018-04-09 22:33:24 +10:00
|
|
|
#path = "../../gfx/src/hal"
|
2017-12-08 23:11:54 +11:00
|
|
|
|
2019-06-27 04:10:13 +10:00
|
|
|
[dependencies.gfx-backend-empty]
|
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
|
|
|
#path = "../../gfx/src/backend/empty"
|
|
|
|
|
2020-08-26 09:51:56 +10:00
|
|
|
[target.'cfg(not(any(target_os = "macos", target_os = "ios")))'.dependencies.gfx-backend-vulkan]
|
2017-12-20 08:28:57 +11:00
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
2018-04-09 22:33:24 +10:00
|
|
|
#path = "../../gfx/src/backend/vulkan"
|
2017-12-27 05:45:31 +11:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies.gfx-backend-dx12]
|
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
2018-04-09 22:33:24 +10:00
|
|
|
#path = "../../gfx/src/backend/dx12"
|
2017-12-27 05:45:31 +11:00
|
|
|
optional = true
|
2018-03-02 14:04:47 +11:00
|
|
|
|
2018-06-22 22:00:34 +10:00
|
|
|
[target.'cfg(windows)'.dependencies.gfx-backend-dx11]
|
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
|
|
|
#path = "../../gfx/src/backend/dx11"
|
|
|
|
optional = true
|
|
|
|
|
2020-08-26 09:51:56 +10:00
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.gfx-backend-metal]
|
2018-03-02 14:04:47 +11:00
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
2018-04-09 22:33:24 +10:00
|
|
|
#path = "../../gfx/src/backend/metal"
|
2018-03-02 14:04:47 +11:00
|
|
|
optional = true
|
2019-06-01 10:16:51 +10:00
|
|
|
|
2020-08-22 13:13:29 +10:00
|
|
|
#[dependencies.gfx-backend-gl]
|
|
|
|
#git = "https://github.com/gfx-rs/gfx"
|
2019-06-01 10:16:51 +10:00
|
|
|
#path = "../../gfx/src/backend/gl"
|
2020-08-22 13:13:29 +10:00
|
|
|
#optional = true
|
2020-01-20 08:17:27 +11:00
|
|
|
|
|
|
|
[dependencies.gfx-auxil]
|
|
|
|
git = "https://github.com/gfx-rs/gfx"
|
2020-04-11 14:25:18 +10:00
|
|
|
#path = "../../gfx/src/auxil/auxil"
|
2020-01-20 08:17:27 +11:00
|
|
|
optional = true
|