diff --git a/components/lazmapviewer/source/mvde_intfgraphics.pas b/components/lazmapviewer/source/mvde_intfgraphics.pas index 869a3b849..5f0a4de5a 100644 --- a/components/lazmapviewer/source/mvde_intfgraphics.pas +++ b/components/lazmapviewer/source/mvde_intfgraphics.pas @@ -54,7 +54,6 @@ type procedure AddAlphaToColors; protected procedure DrawBitmapOT(X, Y: Integer; ABitmap: TCustomBitmap; AOpaqueColor, ATransparentColor: TColor); -// procedure DrawTextImage(X, Y: Integer; AMaskImage: TFPCustomImage); function GetBrushColor: TColor; override; function GetBrushStyle: TBrushStyle; override; function GetFontColor: TColor; override; @@ -413,29 +412,6 @@ begin img.Free; end; end; - (* -{ The provided image serves as an alpha mask: black is transparent, white is - opaque.} -procedure TMvIntfGraphicsDrawingEngine.DrawTextImage(X, Y: Integer; - AMaskImage: TFPCustomImage); -var - ix, iy: Integer; - maskclr: TFPColor; - bufClr: TFPColor; - fontClr: TFPColor; -begin - fontClr := TColorToFPColor(FontColor); - for iy := 0 to AMaskImage.Height-1 do - for ix := 0 to AMaskImage.Width-1 do - begin - bufClr := FBuffer.Colors[X + ix, Y + iy]; - maskClr.Red := fontClr.Red; - maskClr.Green := fontClr.Green; - maskClr.Blue := fontClr.Blue; - maskClr.Alpha := AMaskImage.Colors[ix, iy].Red; // since the text is white, Red is sufficient - FBuffer.Colors[X + iX, Y + iy] := AlphaBlend(bufClr, maskClr); - end; -end; *) procedure TMvIntfGraphicsDrawingEngine.DrawCacheItem(X, Y: Integer; AImg: TPictureCacheItem; ADrawMode: TItemDrawMode; AOpacity: Single); diff --git a/components/lazmapviewer/source/mvmapviewer.pas b/components/lazmapviewer/source/mvmapviewer.pas index 562c20f02..f60eb4ee8 100644 --- a/components/lazmapviewer/source/mvmapviewer.pas +++ b/components/lazmapviewer/source/mvmapviewer.pas @@ -1019,6 +1019,8 @@ uses mvJobQueue, {$IFDEF MSWINDOWS} mvDLEWin, + {$ELSE} + mvDLEFPC, {$ENDIF} mvDE_IntfGraphics;