Lines Matching refs:AlphaChannel

99 …utputPixel.RedChannel, outputPixel.GreenChannel, outputPixel.BlueChannel, outputPixel.AlphaChannel,  in GenerateBlendMethod()
100 …tForegroundPixel.GreenChannel, inputForegroundPixel.BlueChannel, inputForegroundPixel.AlphaChannel, in GenerateBlendMethod()
101 …tBackgroundPixel.GreenChannel, inputBackgroundPixel.BlueChannel, inputBackgroundPixel.AlphaChannel, in GenerateBlendMethod()
103 …kgroundPixel.GreenChannel, contantBackgroundPixel.BlueChannel, contantBackgroundPixel.AlphaChannel, in GenerateBlendMethod()
117 …Expression.Assign(contantBackgroundPixel.AlphaChannel, Expression.Convert(Expression.Property(vBac… in GenerateBlendMethod()
133 …ssion.Assign(inputBackgroundPixel.AlphaChannel, Expression.Divide(Expression.Multiply(inputBackgro… in GenerateBlendMethod()
139 …Expression.Assign(inputBackgroundPixel.AlphaChannel, Expression.Convert(vBackBufferAlphaMultiplier… in GenerateBlendMethod()
148 …ssion.Assign(inputForegroundPixel.AlphaChannel, Expression.Divide(Expression.Multiply(inputForegro… in GenerateBlendMethod()
154 …Expression.Assign(inputForegroundPixel.AlphaChannel, Expression.Convert(vFrontBufferAlphaMultiplie… in GenerateBlendMethod()
165 inputBackgroundPixel.AlphaChannel, in GenerateBlendMethod()
168 inputForegroundPixel.AlphaChannel)), in GenerateBlendMethod()
176 contantBackgroundPixel.AlphaChannel, in GenerateBlendMethod()
180 inputForegroundPixel.AlphaChannel, in GenerateBlendMethod()
185 outputPixel.AlphaChannel, in GenerateBlendMethod()
187 inputForegroundPixel.AlphaChannel, in GenerateBlendMethod()
194 … Expression.Equal(outputPixel.AlphaChannel, Expression.Constant((uint)0)), in GenerateBlendMethod()
200 … Expression.Assign(outputPixel.AlphaChannel, contantBackgroundPixel.AlphaChannel)), in GenerateBlendMethod()
210 … Expression.Multiply(inputForegroundPixel.AlphaChannel, inputForegroundPixel.RedChannel)), in GenerateBlendMethod()
211 outputPixel.AlphaChannel)), in GenerateBlendMethod()
219 … Expression.Multiply(inputForegroundPixel.AlphaChannel, inputForegroundPixel.GreenChannel)), in GenerateBlendMethod()
220 outputPixel.AlphaChannel)), in GenerateBlendMethod()
228 … Expression.Multiply(inputForegroundPixel.AlphaChannel, inputForegroundPixel.BlueChannel)), in GenerateBlendMethod()
229 outputPixel.AlphaChannel)))) in GenerateBlendMethod()
269 … { vColor.RedChannel, vColor.GreenChannel, vColor.BlueChannel, vColor.AlphaChannel, vInStep, vOutS… in GenerateConvertMethod()
287 …Expression.Assign(vColor.AlphaChannel, Expression.Divide(Expression.Multiply(vColor.AlphaChannel, … in GenerateConvertMethod()
293 … Expression.Assign(vColor.AlphaChannel, Expression.Convert(vAlpha, typeof(uint))), in GenerateConvertMethod()
396 expressions.Add(Expression.Assign(tmp, color.AlphaChannel)); in GenerateFrom()
406 expressions.Add(Expression.Assign(color.AlphaChannel, tmp)); in GenerateFrom()
414 currentColor = color.AlphaChannel; in GenerateFrom()
430 expressions.Add(Expression.Assign(color.AlphaChannel, colorExpression)); in GenerateFrom()
457 … expressions.Add(Expression.Assign(color.AlphaChannel, Expression.Constant((uint)0xFF))); in GenerateFrom()
485 colorExpression = color.AlphaChannel; in GenerateTo()
712 AlphaChannel = Expression.Variable(typeof(uint), "alpha"); in PixelDescriptor()
718 public ParameterExpression AlphaChannel; field in Antmicro.Renode.Backends.Display.PixelManipulationTools.PixelDescriptor