pub const FIELD_WGSL: &str = include_str!("shaders/field.wgsl");
pub const CURVE_JACOBIAN_WGSL: &str = include_str!("shaders/curve_jacobian.wgsl");
pub const TABLES_WGSL: &str = include_str!("shaders/tables.wgsl");
pub const SHA256_WGSL: &str = include_str!("shaders/sha256.wgsl");
pub const RIPEMD160_WGSL: &str = include_str!("shaders/ripemd160.wgsl");
pub fn get_combined_source() -> String {
format!(
"{}
{}
{}
{}
{}",
FIELD_WGSL,
CURVE_JACOBIAN_WGSL,
TABLES_WGSL,
SHA256_WGSL,
RIPEMD160_WGSL
)
}