1#pragma pack_matrix(row_major) 2 3float4x4 g_GlobalMat1; 4 5float4 main() : SV_Target0 6{ 7 return g_GlobalMat1[0]; 8} 9