Skip to content

Commit

Permalink
Update to gfx 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
alexheretic committed Dec 30, 2017
1 parent 9f90ecb commit bf9ef5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gfx_glyph"
version = "0.7.0"
version = "0.8.0"
authors = ["Alex Butler <[email protected]>"]
description = "Fast GPU cached text rendering using gfx-rs & rusttype"
repository = "https://github.com/alexheretic/gfx-glyph"
Expand All @@ -12,8 +12,8 @@ readme="README.md"
[dependencies]
log = "0.4"
rusttype = "0.3"
gfx = "0.16"
gfx_core = "0.7"
gfx = "0.17"
gfx_core = "0.8"
unicode-normalization = "0.1"
ordered-float = "0.5"
xi-unicode = "0.1"
Expand All @@ -23,8 +23,8 @@ backtrace = "0.3"
[dev-dependencies]
env_logger = "0.5.0-rc.1"
approx = "0.1"
gfx_window_glutin = "0.19"
glutin = "0.11"
gfx_window_glutin = "0.20"
glutin = "0.12"
time = "0.1"
cgmath = "0.15"
spin_sleep = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ where
let tex = factory.create_texture(
kind,
1 as texture::Level,
gfx::memory::SHADER_RESOURCE,
gfx::memory::Bind::SHADER_RESOURCE,
gfx::memory::Usage::Dynamic,
Some(<TexChannel as format::ChannelTyped>::get_channel_type()),
)?;
Expand Down

0 comments on commit bf9ef5b

Please sign in to comment.