glslang/Test/hlsl.matpack-pragma-global.frag

9 lines
115 B
GLSL
Raw Normal View History

2020-06-25 03:27:28 +00:00
#pragma pack_matrix(row_major)
float4x4 g_GlobalMat1;
float4 main() : SV_Target0
{
return g_GlobalMat1[0];
}