mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
307b6507b3
HLSL allows several variables to be declared. There are packing rules involved: e.g, a float3 and a float1 can be packed into a single array[4], while for a float3 and another float3, the second one will skip the third array entry to avoid straddling This is implements that ability. Because there can be multiple variables involved, and the final output array will often be a different type altogether (to fuse the values into a single destination), a new variable is synthesized, unlike the prior clip/cull support which used the declared variable. The new variable name is taken from one of the declared ones, so the old tests are unchanged. Several new tests are added to test various packing scenarios. Only two semantic IDs are supported: 0, and 1, per HLSL rules. This is encapsulated in static const int maxClipCullRegs = 2; and the algorithm (probably :) ) generalizes to larger values, although there are a few issues around how HLSL would pack (e.g, would 4 scalars be packed into a single HLSL float4 out reg? Probably, and this algorithm assumes so).
24 lines
541 B
GLSL
24 lines
541 B
GLSL
struct VS_OUTPUT {
|
|
float4 Position : SV_Position;
|
|
float4 clip0 : SV_ClipDistance0; // multiple semantic IDs, two vec4s (no extra packing)
|
|
float4 clip1 : SV_ClipDistance1; // ...
|
|
};
|
|
|
|
VS_OUTPUT main()
|
|
{
|
|
VS_OUTPUT Output;
|
|
Output.Position = 0;
|
|
|
|
Output.clip0.x = 0;
|
|
Output.clip0.y = 1;
|
|
Output.clip0.z = 2;
|
|
Output.clip0.w = 3;
|
|
|
|
Output.clip1.x = 4;
|
|
Output.clip1.y = 5;
|
|
Output.clip1.z = 6;
|
|
Output.clip1.w = 7;
|
|
|
|
return Output;
|
|
}
|