Add pack_matrix test

This commit is contained in:
lriki
2020-06-25 12:27:28 +09:00
parent 3cae3c4da8
commit 1ee750aed5
3 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#pragma pack_matrix(row_major)
float4x4 g_GlobalMat1;
float4 main() : SV_Target0
{
return g_GlobalMat1[0];
}