Skip to content
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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,17 @@ jobs:

# Wayland, KMS/DRM, X11
- target: i686-unknown-linux-gnu
features: "kms,x11,x11-dlopen,wayland,wayland-dlopen"
- target: x86_64-unknown-linux-gnu
features: "kms,x11,x11-dlopen,wayland,wayland-dlopen"
- target: x86_64-unknown-linux-gnu
features: "x11,x11-dlopen"
- target: x86_64-unknown-linux-gnu
features: "wayland,wayland-dlopen"
- target: x86_64-unknown-linux-gnu
features: "kms"
- target: x86_64-unknown-freebsd
features: "kms,x11,x11-dlopen,wayland,wayland-dlopen"
- target: x86_64-unknown-netbsd
features: "x11,x11-dlopen,wayland,wayland-dlopen"

Expand Down Expand Up @@ -98,7 +101,7 @@ jobs:
# - { target: x86_64-pc-windows-gnu, os: windows-latest, host: -x86_64-pc-windows-gnu }
# - { target: i686-pc-windows-gnu, os: windows-latest, host: -i686-pc-windows-gnu }
- { target: i686-unknown-linux-gnu, os: ubuntu-latest, }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, features: "kms" }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: --no-default-features, features: "x11,x11-dlopen" }
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, options: --no-default-features, features: "wayland,wayland-dlopen" }
# Build with default Winit backends.
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- **Breaking:** Removed generic type parameters `D` and `W` from `Buffer<'_>` struct.
- **Breaking:** Removed `Deref[Mut]` implementation on `Buffer<'_>`. Use `Buffer::pixels()` instead.
- **Breaking:** Removed unintentional Cargo features for Softbuffer's optional dependencies.
- **Breaking:** Disable the DRM/KMS backend by default.
- **Breaking:** Removed `DamageOutOfRange` error case. If the damage value is greater than the backend supports, it is instead clamped to an appropriate value.
- Fixed `present_with_damage` with bounds out of range on Windows, Web and X11.

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["game-development", "graphics", "gui", "multimedia", "rendering"]
exclude = ["examples"]

[features]
default = ["wayland", "wayland-dlopen", "x11", "x11-dlopen", "kms"]
default = ["wayland", "wayland-dlopen", "x11", "x11-dlopen"]

# Enable the Wayland backend.
wayland = [
Expand Down