Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.14 preparations #1140

Merged
merged 2 commits into from
Jan 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Change Log

### Version 0.9.0 (2016-01-22)
### Version 0.9 (2016-01-22)
- Pipepeline State Object revolution (#828)
- v0.9.1 (2016-02-19)
- window resize support (#879)
Expand All @@ -9,25 +9,25 @@
- fixed universal format views (#886)
- fixed constant buffer binding (#828)

### Version 0.10.0 (2016-03-21)
### Version 0.10 (2016-03-21)
- Direct3D 11 backend (#861)
- v0.10.1 (2016-03-26)
- fixed update_texture (#912)
- v0.10.2 (2016-04-15)
- fixed get_texel_count (#937)

### Version 0.11.0 (2016-04-30)
### Version 0.11 (2016-04-30)
- modified `Slice` API (#955)
- fixed GL blending where it's not in the core (#953)
- raw PSO components for vertex buffers and render targets

### Version 0.12.0 (2016-06-23)
### Version 0.12 (2016-06-23)
- Android / GLES support (#993)
- GL unsigned int samplers (#991)
- better errors (#976)
- better GLSL pre core reflection

### Version 0.13.0 (2016-12-18)
### Version 0.13 (2016-12-18)
- experimental Metal backend (#969, #1049, #1050)
- persistent mapping (#1026)
- tessellation support (#1027, #1088)
Expand All @@ -36,3 +36,10 @@
- unified scissor: now Y-reversed on GL (#1092)
- "const" resources are now called "immutable"
- faster handle clones and cleaner core API (#1031)

### Version 0.14 (2017-01-16)
- fixed `Fence` and `Sync` bounds (#1095)
- dx11 buffer mapping support (#1099, #1105)
- redesigned resource usage model for next-gen compatibility (#1123)
- buffer copy support (#1129)
- fixed and improved some errors (#1137, #1138)
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ log = "0.3"
env_logger = "0.3"
glutin = "0.7.1"
winit = "0.5.1"
gfx_core = { path = "src/core", version = "0.5" }
gfx = { path = "src/render", version = "0.13.1" }
gfx_device_gl = { path = "src/backend/gl", version = "0.12" }
gfx_window_glutin = { path = "src/window/glutin", version = "0.13" }
gfx_core = { path = "src/core", version = "0.6" }
gfx = { path = "src/render", version = "0.14" }
gfx_device_gl = { path = "src/backend/gl", version = "0.13" }
gfx_window_glutin = { path = "src/window/glutin", version = "0.14" }

[dependencies.gfx_device_vulkan]
path = "src/backend/vulkan"
Expand Down Expand Up @@ -55,11 +55,11 @@ version = "0.4"
optional = true

[target.'cfg(unix)'.dependencies]
gfx_window_glfw = { path = "src/window/glfw", version = "0.12" }
gfx_window_glfw = { path = "src/window/glfw", version = "0.13" }

[target.'cfg(windows)'.dependencies]
gfx_device_dx11 = { path = "src/backend/dx11", version = "0.4" }
gfx_window_dxgi = { path = "src/window/dxgi", version = "0.6" }
gfx_device_dx11 = { path = "src/backend/dx11", version = "0.5" }
gfx_window_dxgi = { path = "src/window/dxgi", version = "0.7" }

[[example]]
name = "blend"
Expand Down Expand Up @@ -131,4 +131,4 @@ image = "0.6"
winit = "0.5"

[target.x86_64-unknown-linux-gnu.dev_dependencies]
glfw = "0.11"
glfw = "0.12"
4 changes: 2 additions & 2 deletions src/backend/dx11/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_device_dx11"
version = "0.4.0"
version = "0.5.0"
description = "DirectX-11 backend for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -27,7 +27,7 @@ name = "gfx_device_dx11"

[dependencies]
log = "0.3"
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
d3d11-sys = "0.2"
d3dcompiler-sys = "0.2"
dxguid-sys = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions src/backend/gl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_device_gl"
version = "0.12.0"
version = "0.13.0"
description = "OpenGL backend for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -28,4 +28,4 @@ name = "gfx_device_gl"
[dependencies]
log = "0.3"
gfx_gl = "0.3.1"
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
2 changes: 1 addition & 1 deletion src/backend/metal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ name = "gfx_device_metal"

[dependencies]
log = "0.3"
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
cocoa = "0.2.5"
libc = "0.2"
objc = "0.1.8"
Expand Down
2 changes: 1 addition & 1 deletion src/backend/vulkan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ vk = "0.0"
vk-sys = { git = "https://github.com/sectopod/vulkano", branch = "bind" }
shared_library = "0.1"
winit = "0.5"
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
spirv-utils = { git = "https://github.com/msiglreith/spirv-utils.git", branch = "gfx" }
2 changes: 1 addition & 1 deletion src/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_core"
version = "0.5.1"
version = "0.6.0"
description = "Core library of Gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand Down
4 changes: 2 additions & 2 deletions src/render/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx"
version = "0.13.1"
version = "0.14.0"
description = "A high-performance, bindless graphics API"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -32,4 +32,4 @@ unstable = []
[dependencies]
draw_state = "0.6"
log = "0.3"
gfx_core = { path = "../core", version = "0.5" }
gfx_core = { path = "../core", version = "0.6" }
6 changes: 3 additions & 3 deletions src/window/dxgi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_window_dxgi"
version = "0.6.0"
version = "0.7.0"
description = "DXGI window for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -32,5 +32,5 @@ user32-sys = "0.1"
dxguid-sys = "0.2"
winapi = "0.2"
winit = "0.5.2"
gfx_core = { path = "../../core", version = "0.5" }
gfx_device_dx11 = { path = "../../backend/dx11", version = "0.4" }
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_dx11 = { path = "../../backend/dx11", version = "0.5" }
8 changes: 4 additions & 4 deletions src/window/glfw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_window_glfw"
version = "0.12.0"
version = "0.13.0"
description = "GLFW window for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -26,6 +26,6 @@ authors = ["The Gfx-rs Developers"]
name = "gfx_window_glfw"

[dependencies]
glfw = "0.11"
gfx_core = { path = "../../core", version = "0.5" }
gfx_device_gl = { path = "../../backend/gl", version = "0.12" }
glfw = "0.12"
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_gl = { path = "../../backend/gl", version = "0.13" }
6 changes: 3 additions & 3 deletions src/window/glutin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "gfx_window_glutin"
version = "0.13.1"
version = "0.14.0"
description = "Glutin window for gfx-rs"
homepage = "https://github.com/gfx-rs/gfx"
repository = "https://github.com/gfx-rs/gfx"
Expand All @@ -27,5 +27,5 @@ name = "gfx_window_glutin"

[dependencies]
glutin = "0.7"
gfx_core = { path = "../../core", version = "0.5" }
gfx_device_gl = { path = "../../backend/gl", version = "0.12" }
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_gl = { path = "../../backend/gl", version = "0.13" }
2 changes: 1 addition & 1 deletion src/window/metal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ cocoa = "0.2.5"
objc = "0.1.8"
winit = "0.5"
metal-rs = "0.1"
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_metal = { path = "../../backend/metal", version = "0.1" }
4 changes: 2 additions & 2 deletions src/window/sdl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ name = "gfx_window_sdl"

[dependencies]
sdl2 = "0.27"
gfx_core = { path = "../../core", version = "0.5" }
gfx_device_gl = { path = "../../backend/gl", version = "0.12" }
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_gl = { path = "../../backend/gl", version = "0.13" }
2 changes: 1 addition & 1 deletion src/window/vulkan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "gfx_window_vulkan"
[dependencies]
winit = "0.5"
vk-sys = { git = "https://github.com/sectopod/vulkano", branch = "bind" }
gfx_core = { path = "../../core", version = "0.5" }
gfx_core = { path = "../../core", version = "0.6" }
gfx_device_vulkan = { path = "../../backend/vulkan", version = "0.1" }

[target.'cfg(windows)'.dependencies]
Expand Down