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

Upgrade the version of angle #69

Merged
merged 19 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "mozangle"
version = "0.4.0"
version = "0.5.0"
authors = ["The ANGLE Project Authors", "The Servo Project Developers"]
license = "BSD-3-Clause"
description = "Mozilla's fork of Google ANGLE, repackaged as a Rust crate."
repository = "https://github.com/servo/mozangle"
readme = "README.md"

[dependencies]
libz-sys = { version = "1.1", optional = true }
lazy_static = "1.0"

[dev-dependencies]
Expand All @@ -23,5 +24,5 @@ gl_generator = { version = "0.14", optional = true }
walkdir = "2"

[features]
egl = ["gl_generator"] # Only does anything on Windows
build_dlls = ["egl"]
egl = ["gl_generator", "libz-sys"] # Only does anything on Windows
build_dlls = ["egl", "libz-sys"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ANGLE supports more platforms, this crate only configures the Direct3D 11 render

```toml
[dependencies]
mozangle = { version = "0.4", features = ["egl"] }
mozangle = { version = "0.5", features = ["egl"] }
```


Expand Down
1 change: 1 addition & 0 deletions UPSTREAM
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gfx/angle is taken from mozilla-esr115: 02755361e26d82768eb1d5f576145e19d7c265cd
Loading