You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
403 B
30 lines
403 B
struct PS_OUTPUT
|
|
{
|
|
float4 Color : SV_Target0;
|
|
};
|
|
|
|
uniform int ival;
|
|
uniform int4 ival4;
|
|
uniform float fval;
|
|
uniform float4 fval4;
|
|
|
|
PS_OUTPUT main()
|
|
{
|
|
!ival; // scalar int
|
|
!ival4; // vector int
|
|
|
|
!fval; // scalar float
|
|
!fval4; // vector float
|
|
|
|
if (ival);
|
|
if (fval);
|
|
if (!ival);
|
|
if (!fval);
|
|
|
|
PS_OUTPUT psout;
|
|
psout.Color = 1.0;
|
|
return psout;
|
|
}
|
|
|
|
|