Cargo Features
[dependencies]
egui_winit_vulkano = { version = "0.28.0", default-features = false, features = ["links", "clipboard", "wayland", "x11", "image"] }
- default = clipboard, image, links, wayland, x11
-
These default features are set whenever
egui_winit_vulkano
is added without
somewhere in the dependency tree.default-features = false - links default
-
Enables links of egui-winit
egui-winit:
Enable opening links in a browser when an egui hyperlink is clicked.
- clipboard default
-
Enables clipboard of egui-winit
egui-winit:
Enable cut/copy/paste to OS clipboard.
If disabled a clipboard will be simulated so you can still copy/paste within the egui app. - wayland default
-
Enables wayland and wayland-dlopen of winit and wayland of egui-winit
egui-winit:
Enables Wayland support.
- x11 default
-
Enables x11 of egui-winit and winit
egui-winit:
Enables compiling for x11.
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- image default
-
Affects
utils::immutable_texture_from_file
…