summaryrefslogtreecommitdiff
path: root/wx+/image_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/image_tools.h')
-rwxr-xr-xwx+/image_tools.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/wx+/image_tools.h b/wx+/image_tools.h
index 06d7f0ba..bef4cb67 100755
--- a/wx+/image_tools.h
+++ b/wx+/image_tools.h
@@ -53,10 +53,14 @@ void convertToVanillaImage(wxImage& img); //add alpha channel if missing + remov
//wxColor hsvColor(double h, double s, double v); //h within [0, 360), s, v within [0, 1]
-
-
-
-
+inline
+wxImage getTransparentPixel()
+{
+ wxImage dummyImage(1, 1);
+ dummyImage.SetAlpha();
+ ::memset(dummyImage.GetAlpha(), 1 /*opacity*/, 1 * 1); //suprise: can't use wxIMAGE_ALPHA_TRANSPARENT(0), painted black on Windows!
+ return dummyImage;
+}
bgstack15