Log in

View Full Version : Animate( BilinearResize( (float)src_* ) ) == SLOW


Xenoproctologist
15th November 2002, 07:43
bilinearresize(320, 240, 1.5, 1.5, last.width/2., last.height/2.)...Runs like a dream.


animate(0,last.framecount-1,"bilinearresize",
\ last, 320, 240, 1., 1., last.width/2., last.height/2.,
\ last, 320, 240, 1., 1., last.width/2., last.height/2.)...Runs like a dream.


animate(0,last.framecount-1,"bilinearresize",
\ last, 320, 240, 1.5, 1.5, last.width/2., last.height/2.,
\ last, 320, 240, 1.5, 1.5, last.width/2., last.height/2.)...Runs like my 80 year old grandmother.


Can someone explain to me why the former two run fine, while the latter is terribly, hideously, painfully slow?


[EDIT]
Fixed stupid typo.