Hi.

Using CW 9.3
Linker : Palm OS 68k

Trying to do some drawing without PalmOS API.

template< U8 bpp > 
void SurfaceDid<bpp>::Fill ( COLOR col ) 
{ 
����������� PixelType c = (PixelType)col;
����������� U8 
����������������������� *l=PixelPtr( 0, 0 ),
����������������������� *p=l;
����������� for ( S16 y = 0; y < Height(); y++,NextY( l ), p=l )
// Height,NextY inlined��� 
����������������������� for ( S16 x =0; x < Width(); x++,NextX( p ) )   //
Width,NextX inlined
����������������������������������� SetBitmapPixel( p, x, c );          //
inlined
}

On device Tungsten|T PalmOS 5.0 performace is not acceptable : moving this
code to ArmLet will slove the problem ?
What will be ratio between this code and analogous realized with PalmOS API
�on earlyer devices ?


Tanks



--
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to