changeset 890:5a96cc2695b9

Removed dw_pixmap_set_transparent_color() from unimplemented on the Mac since it is handled automaticaly.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 07 Apr 2011 19:31:32 +0000
parents 238ca78e71a7
children 3774af45eb0c
files mac/dw.m
diffstat 1 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mac/dw.m	Thu Apr 07 19:20:27 2011 +0000
+++ b/mac/dw.m	Thu Apr 07 19:31:32 2011 +0000
@@ -5776,11 +5776,17 @@
 }
 
 /*
- * Creates a bitmap mask for rendering bitmaps with transparent backgrounds
+ * Sets the transparent color for a pixmap
+ * Parameters:
+ *       pixmap: Handle to a pixmap returned by
+ *               dw_pixmap_new..
+ *       color:  transparent color
+ * Note: This does nothing on Mac as transparency
+ *       is handled automatically
  */
 void API dw_pixmap_set_transparent_color( HPIXMAP pixmap, ULONG color )
 {
-    NSLog(@"dw_pixmap_set_transparent_color() unimplemented\n");
+    /* Don't do anything */
 }
 
 /*