summaryrefslogtreecommitdiffstats
path: root/tests/library/module-library-matrix.slang
blob: 85e4685cc9b08cff08e57f13ebf72067a2ae0feb (plain)
1
2
3
4
5
6
7
8
//TEST_IGNORE_FILE:

module "module-library-matrix";

public float4x4 to4x4(float3x4 source)
{
    return float4x4(source[0], source[1], source[2], float4(0.0f, 0.0f, 0.0f, 1.0f));
}