Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
9 lines
115 B
GLSL
9 lines
115 B
GLSL
#pragma pack_matrix(row_major)
|
|
|
|
float4x4 g_GlobalMat1;
|
|
|
|
float4 main() : SV_Target0
|
|
{
|
|
return g_GlobalMat1[0];
|
|
}
|