summaryrefslogtreecommitdiffstats
path: root/tests/autodiff/material2/MaterialSystem.slang
blob: 5e733fad9083a9ba4c285b971ea432c5cc006984 (plain)
1
2
3
4
5
6
7
8
//TEST_IGNORE_FILE:

__exported import IMaterial;

IMaterial createMaterialClassConformance(int type, float3 value)
{
    return createDynamicObject<IMaterial, float3>(type, value);
}