~oluseyi-deactivatedaccount/pencil/trunk

« back to all changes in this revision

Viewing changes to src/external/flash/flash.cpp

  • Committer: volute
  • Date: 2007-10-14 00:50:36 UTC
  • Revision ID: svn-v4:f509e8e7-a431-0410-8952-ba4f3f4fc37f:trunk:39
Added Debian directory created by P. Wise. Some minor clean-up, and added some details in the notes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
        shape->drawLineTo(bitmapImage->left(), bitmapImage->bottom());
113
113
        shape->drawLineTo(bitmapImage->left(), bitmapImage->top());
114
114
        SWFDisplayItem *item = sprite->add( shape );
115
 
        item->setMatrix( view.m11(), view.m12(), view.m21(), view.m22(), view.dx(), view.dy() );
 
115
        //item->setMatrix( view.m11(), view.m12(), view.m21(), view.m22(), view.dx(), view.dy() ); // this C++ method is not defined in mingpp.h version 0.3
 
116
        SWFDisplayItem_setMatrix( item->item, view.m11(), view.m12(), view.m21(), view.m22(), view.dx(), view.dy() ); // we use the C function instead
116
117
        sprite->nextFrame();
117
118
}
118
119