cranpose_ui_graphics/
framework_shaders.rs1pub const SHAPE_WGSL: &str = include_str!("../shaders/shape.wgsl");
10pub const SHAPE_SOLID_TRIM_WGSL: &str = include_str!("../shaders/shape_solid_trim.wgsl");
14pub const IMAGE_WGSL: &str = include_str!("../shaders/image.wgsl");
15pub const GLYPH_ATLAS_WGSL: &str = include_str!("../shaders/glyph_atlas.wgsl");
16
17pub const FULLSCREEN_QUAD_VS_WGSL: &str = include_str!("../shaders/fullscreen_quad_vs.wgsl");
19pub const SDF_ROUNDED_RECT_FN_WGSL: &str = include_str!("../shaders/sdf_rounded_rect_fn.wgsl");
21pub const COMPOSITE_SAMPLE_FN_WGSL: &str = include_str!("../shaders/composite_sample_fn.wgsl");
23
24pub const BLUR_FS_WGSL: &str = include_str!("../shaders/blur_fs.wgsl");
25pub const BLUR_ROUNDED_MASK_FS_WGSL: &str = include_str!("../shaders/blur_rounded_mask_fs.wgsl");
26pub const OFFSET_FS_WGSL: &str = include_str!("../shaders/offset_fs.wgsl");
27pub const BLIT_FS_WGSL: &str = include_str!("../shaders/blit_fs.wgsl");
28pub const BLIT_FS_MAIN_WGSL: &str = include_str!("../shaders/blit_fs_main.wgsl");
29pub const PROJECTIVE_BLIT_FS_WGSL: &str = include_str!("../shaders/projective_blit_fs.wgsl");
30pub const PROJECTIVE_BLIT_MAIN_WGSL: &str = include_str!("../shaders/projective_blit_main.wgsl");
31
32pub const GPU_TEXT_BRUSH_EFFECT_WGSL: &str = include_str!("../shaders/gpu_text_brush_effect.wgsl");