yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
9a1e32738
master
1//DIAGNOSTIC_TEST:SIMPLE: -profile sm_5_0 -entry main1 -stage vertex tests/diagnostics/gh-38-fs.hlsl -entry main -stage fragment -no-codegen 2 3// Ensure that we catch errors with overlapping or conflicting parameter bindings. 4 5Texture2D overlappingA :register ( t0 ); 6 7Texture2D conflicting :register ( t1 ); 8 9float4 main1 () : SV_Position { return 0 ; }