# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1302204692 0 # Node ID 5a96cc2695b9f9346a292c7a08ca8f35f8a459cf # Parent 238ca78e71a7917606fef5105d7c37a19ce3aa02 Removed dw_pixmap_set_transparent_color() from unimplemented on the Mac since it is handled automaticaly. diff -r 238ca78e71a7 -r 5a96cc2695b9 mac/dw.m --- 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 */ } /*