mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Co-authored-by: Andreas Reich <r_andreas2@web.de> Co-authored-by: Magnus <85136135+SupaMaggie70Incorporated@users.noreply.github.com>
10 lines
187 B
HLSL
10 lines
187 B
HLSL
struct FragmentInput_main {
|
|
uint view_index_1 : SV_ViewID;
|
|
};
|
|
|
|
void main(FragmentInput_main fragmentinput_main)
|
|
{
|
|
uint view_index = fragmentinput_main.view_index_1;
|
|
return;
|
|
}
|