https://github.com/shader-slang/slang
Raw File
Tip revision: 697e7fbbbb5dcb448c03a9887e6ef09e328505ef authored by Tim Foley on 17 August 2020, 22:28:05 UTC
Attempt to fix lookup for members that "override" (#1501)
Tip revision: 697e7fb
empty-struct.slang
//TEST(smoke,compute):COMPARE_COMPUTE:
//TEST(smoke,compute):COMPARE_COMPUTE:-cpu

// Confirm that generics syntax can be used in user
// code and generates valid output.

//TEST_INPUT:ubuffer(data=[0 0 0 0], stride=4):out,name=outputBuffer
RWStructuredBuffer<float> outputBuffer;

struct Simple
{
    float getVal() {return 1.0;}
};

[numthreads(4, 1, 1)]
void computeMain(uint3 dispatchThreadID : SV_DispatchThreadID)
{
    Simple s;
	float outVal = s.getVal();
	outputBuffer[dispatchThreadID.x] = outVal;
}
back to top