blob: 7b0a5f3a62e49085e9377f957045134f38f17be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// rustfmt-hard_tabs: true
#[macro_export]
macro_rules! main {
() => {
#[spirv(fragment)]
pub fn main_fs(
mut out_color: ::spirv_std::storage_class::Output<Vec4>,
#[spirv(descriptor_set = 1)]
iChannelResolution: ::spirv_std::storage_class::UniformConstant<
[::spirv_std::glam::Vec3A; 4],
>,
) {
}
};
}
|