diff options
author | Slávek Banko <[email protected]> | 2019-04-22 20:57:31 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-04-28 16:05:06 +0200 |
commit | b314a5b4a87c2c84b77a801348b05c819a44ef7b (patch) | |
tree | 9f5d5520de3d05096a84b6a1af7f65d48960a33a /art_gray_svp.h | |
parent | db23722ddb8507a7954d1cecf6217823b2052388 (diff) | |
download | libart-lgpl-b314a5b4a87c2c84b77a801348b05c819a44ef7b.tar.gz libart-lgpl-b314a5b4a87c2c84b77a801348b05c819a44ef7b.zip |
Add support for GCC hidden visibility.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 2a50894a436559785a7e0f6f65dde13b0082572c)
Diffstat (limited to 'art_gray_svp.h')
-rw-r--r-- | art_gray_svp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/art_gray_svp.h b/art_gray_svp.h index 001878d..06ab08d 100644 --- a/art_gray_svp.h +++ b/art_gray_svp.h @@ -23,9 +23,11 @@ #define __ART_GRAY_SVP_H__ #ifdef LIBART_COMPILATION +#include "art_config.h" #include "art_misc.h" #include "art_svp.h" #else +#include <libart_lgpl/art_config.h> #include <libart_lgpl/art_misc.h> #include <libart_lgpl/art_svp.h> #endif @@ -34,7 +36,7 @@ extern "C" { #endif /* __cplusplus */ -void +LIBART_EXPORT void art_gray_svp_aa (const ArtSVP *svp, int x0, int y0, int x1, int y1, art_u8 *buf, int rowstride); |