Revision b513d0deef521318ad943d820dd37029075a33c4 authored by Sai Praveen Bangaru on 12 July 2022, 03:18:06 UTC, committed by GitHub on 12 July 2022, 03:18:06 UTC
* Added support for differentiating calls to basic functions, as well as arithmetic on the float3 type

* Added test expected result
1 parent 9261c7a
Raw File
resource-in-cbuffer.hlsl
//TEST(smoke):REFLECTION:-profile ps_4_0 -target hlsl -no-codegen

// Confirm that we can generate reflection
// information for resources nested inside
// a cbuffer:

cbuffer MyConstantBuffer
{
	float3 v;

	Texture2D myTexture;

	float  c;

	SamplerState mySampler;
}

float4 main() : SV_Target
{
	return 0.0;
}
back to top