On Fri, 2 Dec 2005 01:06:25 -0500 Jose O Gonzalez <[EMAIL PROTECTED]> babbled:
> > > > > > > Just some attached evas stuff.... > > > > > > > ok jose. i hate to do this.... can you > > > > 1. generate a diff: > > > > cd evas > > cvs update -dP > > cvs diff -U > ~/my_changes.diff > > 2. any "new" added files... > > > Attached it is :) There have been many changes to evas recently, > and here are yet more -- new blend funcs implementations, some 'tweaks' > to the scaling funcs, a few other minor things..., and fairly extensive > additions to evas' gradients capabilities.. > > I can go over them in detail later if desired, but for now let's > just get this sent before CVS evas changes again :) > > As always, you are free to do with this as you like, but understand > that nothing here has been checked or tested. ok. first. some style things... 1. dont do: int var = x; int blah = 10; do: int var; int blah = 10; var = x; basically DONT declare values of variables at declaration time, unless its a constant. 2. bracets. use them. do NOT do a + b * c >> 8; do NOT do a + (b * c) >> 8; DO: a + ((b * c) >> 8); i found some mistakes in your code that made the c fallbacks for the scaler code for upscaling images break due to lack of brackets. :) otherwise... good job! the gradients looke funky. very nice :) and yes the evas benchmarks went up a bit - i did soem fiddling too myself. :) -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [EMAIL PROTECTED] 裸好多 Tokyo, Japan (東京 日本) ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel