summaryrefslogtreecommitdiffstats
path: root/tests/compute/global-type-param-array.slang
blob: 87236d8f6bf366915b1f2bc77736d385c61506b2 (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
//TEST(compute):COMPARE_COMPUTE:
//TEST_INPUT: cbuffer(data=[1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0], stride=4):dxbinding(0),glbinding(0)
//TEST_INPUT: ubuffer(data=[0], stride=4):dxbinding(0),glbinding(0),out
//TEST_INPUT: type Pair<Arr<Base,1>, Pair<Arr<Base,2> , Base> >

RWStructuredBuffer<float> outputBuffer;
import globalTypeParamArrayShared;

__generic_param TImpl : IBase;

ParameterBlock<TImpl> impl;

float doCompute<T:IBase>(T t)
{
    return t.compute(1.0);
}

[numthreads(1, 1, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
	uint tid = dispatchThreadID.x;
	float outVal = doCompute<TImpl>(impl); 
	outputBuffer[tid] = outVal;
}