BiradialBlit

Biradial gradient blitter struct.

auto blit = RadialBlit(m_pixels,m_stride,m_height);
blit.setPaint(grad, wr, RepeatMode.Pad);
blit.setCircles(x0,y0,x1,y1,x2,y2);
m_rasterizer.rasterize(blit.getBlitFunc);

Constructors

this
this(uint* pixels, int stride, int height)

Construct a Biradial blitter. pixels - pointer to a 32 bpp pixel buffer stride - buffer width in pixels height - buffer heigth in pixels

Members

Functions

getBlitFunc
BlitFunc getBlitFunc()

Get the BlitFunc for use by the rasterizer

setCoords
void setCoords(float x0, float y0, float r0, float y1, float x1, float r1)

Set the focus and main circles.

setPaint
void setPaint(Gradient gradient, WindingRule wrule, RepeatMode rmode)

Set the paint options.

Meta