blob: 9bdeb919743cfe4ca9a8380b6eb6296f0eff7b18 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//TEST_IGNORE_FILE:
//TEST_INPUT:ubuffer(data=[0 0 0 0 0 0], stride=4):out,name=outputBuffer
RWStructuredBuffer<float> outputBuffer;
interface IBSDF
{
[BackwardDifferentiable]
float3 eval(const float3 wi, const float3 wo);
}
|