From 95bb2a4fe05fe94029047d3165af21b56b7cd3e5 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Tue, 16 Mar 2021 15:31:20 +0900 Subject: vcl: add BmpReader{Writer} and many BMP format test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ibadfed73b9649689cec6e69f562a7a1226aef932 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112554 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- include/vcl/graphicfilter.hxx | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index b9de5bb85de5..d153c9d97648 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -371,6 +371,7 @@ public: static ErrCode readPDF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); static ErrCode readTIFF(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); static ErrCode readWithTypeSerializer(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType, OUString aFilterName); + static ErrCode readBMP(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); static ErrCode readTGA(SvStream & rStream, Graphic & rGraphic); static ErrCode readPICT(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); static ErrCode readMET(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); -- cgit