mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 12:00:05 +00:00
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];
|
||
|
}
|