summaryrefslogtreecommitdiff
path: root/tests/diagnostics/gh-38-vs.hlsl
blob: 7b23efdea30ec1bd71dc26defb52dc69d05b5256 (plain)
1
2
3
4
5
6
7
8
9
//TEST:SIMPLE: -target dxbc-assembly -profile vs_5_0 -entry main tests/diagnostics/gh-38-fs.hlsl -profile ps_5_0 -entry main

// Ensure that we catch errors with overlapping or conflicting parameter bindings.

Texture2D overlappingA : register(t0);

Texture2D conflicting : register(t1);

float4 main() : SV_Position { return 0; }