//::::: RESULTS (FPS) ::::: //Celeron D 2500 mHz: // (-O3) 245 // (-Os) 308 //iPAQ 3850 200 mHz, 8bit color: // (-Os) 26 // (-O3) 26 //iPAQ 3850 200 mHz, 16bit color: // (-Os) 20 // (-O3) 20 //Palm TungstenT 140 mHz, 8bit color: // (-Os) 53 // (-O3) 47 //Palm TungstenT 140 mHz, 16bit color: // (-Os) 40 // (-O3) 42 resize_pixi( 0, 240, 160 ) //video_export_gif("video.gif") offset = 0 start_timer(0) star=" BBBBBB B....B B....B B....B B....B BBBBBB " make_pixi(star) B = #FFFFFF start: transp(256) clear(BLACK) f = fps print( "fps: $f", -78, -78, #FFFFFF ) transp( sin( get_timer(0) / 4 ) + 127 ) print( "math test", -78, -68, #80FF80 ) transp( 255 ) t_reset t_rotate_z( get_timer(0) / 40, 0, 0 ) a = 0 stt: v = a + offset x = csin(v/2) / 4 + ccos(v/3) / 5 y = ccos(v / 3) / 4 + csin(-v) / 4 //fpixi( star, x, y, sin(offset/4)*4+256, offset / 200 ) dot( x, y, #ffffff ) a = a + 4 if a < 2200 { go stt } t_reset offset = get_timer(0) frame(0) go start