• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1struct PSInput {
2  float interp;
3  uint no_interp;
4};
5
6float4 main(PSInput input : INPUT) : SV_TARGET
7{
8  return float4(float(input.no_interp), input.interp, 0, 1);
9}