2016-06-11 22:43:14 +00:00
|
|
|
struct {
|
|
|
|
};
|
|
|
|
|
|
|
|
struct {
|
|
|
|
bool b;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct myS {
|
|
|
|
bool b, c;
|
|
|
|
float4 a, d;
|
|
|
|
};
|
|
|
|
|
|
|
|
myS s1;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
float4 i;
|
|
|
|
} s2;
|
|
|
|
|
2016-09-16 23:10:39 +00:00
|
|
|
struct IN_S {
|
2016-06-13 05:52:12 +00:00
|
|
|
linear float4 a;
|
|
|
|
nointerpolation bool b;
|
|
|
|
noperspective centroid float1 c;
|
|
|
|
sample centroid float2 d;
|
|
|
|
bool ff1 : SV_IsFrontFace;
|
|
|
|
bool ff2 : packoffset(c0.y);
|
2016-07-29 20:28:39 +00:00
|
|
|
bool ff3 : packoffset(c0.y) : register(ps_5_0, s0) ;
|
|
|
|
float4 ff4 : VPOS : packoffset(c0.y) : register(ps_5_0, s0) <int bambam=30;> ;
|
2016-09-16 23:10:39 +00:00
|
|
|
};
|
2016-06-13 05:52:12 +00:00
|
|
|
|
2016-09-28 05:09:32 +00:00
|
|
|
float ff5 : packoffset(c101.y) : register(ps_5_0, s[5]);
|
|
|
|
float ff6 : packoffset(c102.y) : register(s3[5]);
|
2016-07-30 16:29:54 +00:00
|
|
|
|
2016-09-16 23:10:39 +00:00
|
|
|
float4 PixelShaderFunction(float4 input, IN_S s) : COLOR0
|
2016-06-11 22:43:14 +00:00
|
|
|
{
|
|
|
|
struct FS {
|
|
|
|
bool3 b3;
|
|
|
|
} s3;
|
|
|
|
|
|
|
|
s3 == s3;
|
2016-09-16 23:10:39 +00:00
|
|
|
s2.i = s.ff4;
|
2016-06-13 05:52:12 +00:00
|
|
|
|
|
|
|
return input;
|
2016-06-11 22:43:14 +00:00
|
|
|
}
|