Skip to content
Snippets Groups Projects
Commit 789086a8 authored by John Kessenich's avatar John Kessenich
Browse files

HLSL: Test for issue #699.

parent 322cb192
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
......@@ -30,6 +30,12 @@ struct IN_S {
float ff5 : packoffset(c101.y) : register(ps_5_0, s[5]);
float ff6 : packoffset(c102.y) : register(s3[5]);
struct empty {};
struct containEmpty {
empty e;
};
float4 PixelShaderFunction(float4 input, IN_S s) : COLOR0
{
class FS {
......@@ -39,5 +45,9 @@ float4 PixelShaderFunction(float4 input, IN_S s) : COLOR0
s3 == s3;
s2.i = s.ff4;
containEmpty ce;
empty e;
e = ce.e;
return input;
}
......@@ -2,5 +2,5 @@
// For the version, it uses the latest git tag followed by the number of commits.
// For the date, it uses the current date (when then script is run).
#define GLSLANG_REVISION "Overload400-PrecQual.1874"
#define GLSLANG_REVISION "Overload400-PrecQual.1875"
#define GLSLANG_DATE "03-Mar-2017"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment