diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-11-21 13:18:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-11-21 15:13:47 +0100 |
commit | 34b52ae66a275d7dd6328adf0d8da23b2ead6560 (patch) | |
tree | 46440056c27fbb31b0546b9a7a37f3a4b2d0e090 | |
parent | 6a6d28583f753b4b7d9dcd9f07b77944a8f0c51e (diff) |
These functions don't need to be VCL_DLLPUBLIC
They were exported with 86ea64f216819696cd86d1926aff0a138ace2baf "Support for
native 32bit Bitmap in VCL and SVP (cairo) backend" but appear to only be used
within Library_vcl.
Change-Id: I03595c8345b289676e6260e7bd88b6b146ac002d
Reviewed-on: https://gerrit.libreoffice.org/83385
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | include/vcl/BitmapTools.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/BitmapTools.hxx b/include/vcl/BitmapTools.hxx index 1cf13d4c7de8..4e3efbcef84f 100644 --- a/include/vcl/BitmapTools.hxx +++ b/include/vcl/BitmapTools.hxx @@ -33,8 +33,8 @@ typedef sal_uInt8 (*lookup_table)[256]; lookup_table VCL_DLLPUBLIC get_premultiply_table(); lookup_table VCL_DLLPUBLIC get_unpremultiply_table(); -VCL_DLLPUBLIC sal_uInt8 unpremultiply(sal_uInt8 c, sal_uInt8 a); -VCL_DLLPUBLIC sal_uInt8 premultiply(sal_uInt8 c, sal_uInt8 a); +sal_uInt8 unpremultiply(sal_uInt8 c, sal_uInt8 a); +sal_uInt8 premultiply(sal_uInt8 c, sal_uInt8 a); /** * Intended to be used to feed into CreateFromData to create a BitmapEx. RGB data format. |