summaryrefslogtreecommitdiffstats
path: root/tests/compute/global-type-param1.slang
blob: dea611ca49a8a29f29996b1e943137273888b4ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//DISABLED_TEST(smoke,compute):COMPARE_COMPUTE:


//TEST_INPUT: ubuffer(data=[0], stride=4):out,name outputBufer
//TEST_INPUT: cbuffer(data=[0.5 0 0 0 1.0], stride=4):name C
//TEST_INPUT: cbuffer(data=[1.0], stride=4):name impl.base
//TEST_INPUT: Texture2D(size=4, content = zero):name tex1
//TEST_INPUT: Texture2D(size=4, content = one):name impl.tex
//TEST_INPUT: Sampler:name sampler
//TEST_INPUT: Sampler:name impl.sampler
//TEST_INPUT: type Impl

RWStructuredBuffer<float> outputBuffer;

interface IBase
{
    float compute();
}

struct Impl : IBase
{
    float base;  // = 1.0
    Texture2D tex;
    SamplerState sampler;
    float compute()
    {
        return tex.SampleLevel(sampler, float2(0.0), 0.0).x + base;
    }
};

cbuffer C
{
    float base0; // = 0.5    
}

Texture2D tex1;  // = 0.0
SamplerState sampler;

[numthreads(1, 1, 1)]
void computeMain<
    TImpl : IBase>(
    uniform ParameterBlock<TImpl> impl,
    uint3 dispatchThreadID : SV_DispatchThreadID)
{
	uint tid = dispatchThreadID.x;
    float b0 = tex1.SampleLevel(sampler, float2(0.0), 0.0).x + base0; // = 0.5
	float outVal = impl.compute();  // = 2.0
    outVal = b0 / outVal; // = 0.25
	outputBuffer[tid] = outVal;
}