public CommandBlendColorSyntax(SyntaxToken blendKeyword, CommandValueSyntax srcFactor, CommandValueSyntax dstFactor)
     : base(SyntaxKind.CommandBlendColor)
 {
     RegisterChildNode(out BlendKeyword, blendKeyword);
     RegisterChildNode(out SrcFactor, srcFactor);
     RegisterChildNode(out DstFactor, dstFactor);
 }
 public CommandFogRangeSyntax(SyntaxToken rangeKeyword, CommandValueSyntax nearValue, SyntaxToken commaToken, CommandValueSyntax farValue)
     : base(SyntaxKind.CommandFogRange)
 {
     RegisterChildNode(out RangeKeyword, rangeKeyword);
     RegisterChildNode(out NearValue, nearValue);
     RegisterChildNode(out CommaToken, commaToken);
     RegisterChildNode(out FarValue, farValue);
 }
 public CommandOffsetSyntax(SyntaxToken offsetKeyword, CommandValueSyntax factor, SyntaxToken commaToken, CommandValueSyntax units)
     : base(SyntaxKind.CommandOffset)
 {
     RegisterChildNode(out OffsetKeyword, offsetKeyword);
     RegisterChildNode(out Factor, factor);
     RegisterChildNode(out CommaToken, commaToken);
     RegisterChildNode(out Units, units);
 }
 public CommandBlendColorAlphaSyntax(SyntaxToken blendKeyword, CommandValueSyntax srcFactor, CommandValueSyntax dstFactor, SyntaxToken commaToken, CommandValueSyntax srcFactorA, CommandValueSyntax dstFactorA)
     : base(SyntaxKind.CommandBlendColorAlpha)
 {
     RegisterChildNode(out BlendKeyword, blendKeyword);
     RegisterChildNode(out SrcFactor, srcFactor);
     RegisterChildNode(out DstFactor, dstFactor);
     RegisterChildNode(out CommaToken, commaToken);
     RegisterChildNode(out SrcFactorA, srcFactorA);
     RegisterChildNode(out DstFactorA, dstFactorA);
 }
Пример #5
0
 public CommandStencilCompSyntax(SyntaxToken compKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandStencilComp)
 {
     RegisterChildNode(out CompKeyword, compKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #6
0
 public CommandMaterialShininessSyntax(SyntaxToken shininessKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandMaterialShininess)
 {
     RegisterChildNode(out ShininessKeyword, shininessKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandMaterialEmissionSyntax(SyntaxToken emissionKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandMaterialEmission)
 {
     RegisterChildNode(out EmissionKeyword, emissionKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandFogColorSyntax(SyntaxToken colorKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandFogColor)
 {
     RegisterChildNode(out ColorKeyword, colorKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #9
0
 public CommandCullSyntax(SyntaxToken cullKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandCull)
 {
     RegisterChildNode(out CullKeyword, cullKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandMaterialDiffuseSyntax(SyntaxToken diffuseKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandMaterialDiffuse)
 {
     RegisterChildNode(out DiffuseKeyword, diffuseKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #11
0
 public CommandFogModeSyntax(SyntaxToken modeKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandFogMode)
 {
     RegisterChildNode(out ModeKeyword, modeKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #12
0
 public CommandMaterialAmbientSyntax(SyntaxToken ambientKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandMaterialAmbient)
 {
     RegisterChildNode(out AmbientKeyword, ambientKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #13
0
 public CommandAlphaTestComparisonSyntax(SyntaxToken alphaTestKeyword, SyntaxToken comparison, CommandValueSyntax alphaValue)
     : base(SyntaxKind.CommandAlphaTestComparison)
 {
     RegisterChildNode(out AlphaTestKeyword, alphaTestKeyword);
     RegisterChildNode(out Comparison, comparison);
     RegisterChildNode(out AlphaValue, alphaValue);
 }
 public CommandZTestSyntax(SyntaxToken zTestKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandZTest)
 {
     RegisterChildNode(out ZTestKeyword, zTestKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #15
0
 public CommandZWriteSyntax(SyntaxToken zWriteKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandZWrite)
 {
     RegisterChildNode(out ZWriteKeyword, zWriteKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandStencilZFailSyntax(SyntaxToken zFailKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandStencilZFail)
 {
     RegisterChildNode(out ZFailKeyword, zFailKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandFogDensitySyntax(SyntaxToken densityKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandFogDensity)
 {
     RegisterChildNode(out DensityKeyword, densityKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandSeparateSpecularSyntax(SyntaxToken separateSpecularKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandSeparateSpecular)
 {
     RegisterChildNode(out SeparateSpecularKeyword, separateSpecularKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #19
0
 public CommandLodSyntax(SyntaxToken lodKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandLod)
 {
     RegisterChildNode(out LodKeyword, lodKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandStencilReadMaskSyntax(SyntaxToken readMaskKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandStencilReadMask)
 {
     RegisterChildNode(out ReadMaskKeyword, readMaskKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandStencilWriteMaskSyntax(SyntaxToken writeMaskKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandStencilWriteMask)
 {
     RegisterChildNode(out WriteMaskKeyword, writeMaskKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #22
0
 public CommandStencilPassSyntax(SyntaxToken passKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandStencilPass)
 {
     RegisterChildNode(out PassKeyword, passKeyword);
     RegisterChildNode(out Value, value);
 }
Пример #23
0
 public CommandAlphaToMaskSyntax(SyntaxToken alphaToMaskKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandAlphaToMask)
 {
     RegisterChildNode(out AlphaToMaskKeyword, alphaToMaskKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandSetTextureConstantColorSyntax(SyntaxToken constantColorKeyword, CommandValueSyntax value)
     : base(SyntaxKind.CommandSetTextureConstantColor)
 {
     RegisterChildNode(out ConstantColorKeyword, constantColorKeyword);
     RegisterChildNode(out Value, value);
 }
 public CommandColorMaskSyntax(SyntaxToken colorMaskKeyword, CommandValueSyntax mask)
     : base(SyntaxKind.CommandColorMask)
 {
     RegisterChildNode(out ColorMaskKeyword, colorMaskKeyword);
     RegisterChildNode(out Mask, mask);
 }