Declaration ​
pascal
TLCLBackend = class(TCustomBackend, IPaintSupport, IBitmapContextSupport, IDeviceContextSupport, ITextSupport, IFontSupport, ITextToPathSupport, ICanvasSupport, IInteroperabilitySupport, IUpdateRectSupport)Description ​
TLCLBackend is the default backend implementation for Graphics32 on Windows under Lazarus LCL (LCLWin32 / LCLWin64).
TLCLBackend manages 32-bit DIB surface buffers created via LCLIntf.CreateDIBSection and binds them to an LCL Memory Device Context (HDC).
It implements primary LCL surface interfaces:
IPaintSupport: Repainting invalid areas onto LCLTCanvas.IBitmapContextSupport: AccessingTBitmapInfoheaders andHBITMAPhandles.IDeviceContextSupport: Interoperating with device context handles (HDC) and blitting.ITextSupport/IFontSupport: Native LCL font management and string rendering.ITextToPathSupport: Converting TrueType font glyph outlines into vector paths.IInteroperabilitySupport: Copying pixel content from LCLTGraphicobjects into backend buffers.ICanvasSupport: LCLTCanvaswrapper integration.IUpdateRectSupport: LCL window control update region querying viaGetRandomRgn(..., SYSRGN).