Render() protected method

Performs the actual work of rendering an effect. This overload represent a single pixel of the image.
protected Render ( ColorBgra color ) : ColorBgra
color ColorBgra The color of the source surface pixel.
return ColorBgra
Exemplo n.º 1
0
        public static void Render(this BaseEffect effect, Bitmap source)
        {
            var wrapper = new BitmapWrapper(source);

            effect.Render(wrapper);
        }