Prefix wgpu-only features with wgpu_
This commit is contained in:
parent
9f8bdfcfc4
commit
1e40ac3e24
1 changed files with 8 additions and 8 deletions
|
@ -22,23 +22,23 @@ opengl = ["iced_baseview/glow"]
|
||||||
# Enables a debug view in native platforms (press F12)
|
# Enables a debug view in native platforms (press F12)
|
||||||
debug = ["iced_baseview/debug"]
|
debug = ["iced_baseview/debug"]
|
||||||
|
|
||||||
|
# Enables the `Image` widget, only supported by the wgpu backend
|
||||||
|
wgpu_image = ["iced_baseview/image"]
|
||||||
|
# Enables the `Svg` widget, only supported by the wgpu backend
|
||||||
|
wgpu_svg = ["iced_baseview/svg"]
|
||||||
|
|
||||||
# Enables the `Canvas` widget for the wgpu backend
|
# Enables the `Canvas` widget for the wgpu backend
|
||||||
canvas = ["iced_baseview/canvas"]
|
wgpu_canvas = ["iced_baseview/canvas"]
|
||||||
# Enables the `Canvas` widget for the OpenGL backend
|
# Enables the `Canvas` widget for the OpenGL backend
|
||||||
opengl_canvas = ["iced_baseview/glow_canvas"]
|
opengl_canvas = ["iced_baseview/glow_canvas"]
|
||||||
|
|
||||||
# Enables the `Image` widget, only supported by the wgpu backend
|
|
||||||
image = ["iced_baseview/image"]
|
|
||||||
# Enables the `Svg` widget, only supported by the wgpu backend
|
|
||||||
svg = ["iced_baseview/svg"]
|
|
||||||
|
|
||||||
# Enables the `QRCode` widget for the wgpu backend
|
# Enables the `QRCode` widget for the wgpu backend
|
||||||
qr_code = ["iced_baseview/qr_code"]
|
wgpu_qr_code = ["iced_baseview/qr_code"]
|
||||||
# Enables the `QRCode` widget for the OpenGL backend
|
# Enables the `QRCode` widget for the OpenGL backend
|
||||||
opengl_qr_code = ["iced_baseview/glow_qr_code"]
|
opengl_qr_code = ["iced_baseview/glow_qr_code"]
|
||||||
|
|
||||||
# Enables using system fonts for the wgpu backend
|
# Enables using system fonts for the wgpu backend
|
||||||
default_system_font = ["iced_baseview/default_system_font"]
|
wgpu_default_system_font = ["iced_baseview/default_system_font"]
|
||||||
# Enables using system fonts for the OpenGL backend
|
# Enables using system fonts for the OpenGL backend
|
||||||
opengl_default_system_font = ["iced_baseview/glow_default_system_font"]
|
opengl_default_system_font = ["iced_baseview/glow_default_system_font"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue