platform/upstream/efl.git
20 years agoinit vars before usage
tsauerbeck [Fri, 15 Oct 2004 15:12:05 +0000 (15:12 +0000)]
init vars before usage

SVN revision: 11889

20 years agouse EMBRYO_FLOAT_TO_CELL/CELL_TO_FLOAT macros in the sanity checks. not sure we need...
tsauerbeck [Fri, 15 Oct 2004 15:11:26 +0000 (15:11 +0000)]
use EMBRYO_FLOAT_TO_CELL/CELL_TO_FLOAT macros in the sanity checks. not sure we need this anymore at all since we now use a union to do the casting.

SVN revision: 11888

20 years agocvsignore
tsauerbeck [Fri, 15 Oct 2004 11:52:17 +0000 (11:52 +0000)]
cvsignore

SVN revision: 11886

20 years ago0.9.1 version up
Carsten Haitzler [Thu, 14 Oct 2004 06:09:59 +0000 (06:09 +0000)]
0.9.1 version up

SVN revision: 11882

20 years agoint 'list' ops
tsauerbeck [Thu, 14 Oct 2004 04:29:16 +0000 (04:29 +0000)]
int 'list' ops

SVN revision: 11881

20 years agoembryo speedups...
Carsten Haitzler [Thu, 14 Oct 2004 04:17:20 +0000 (04:17 +0000)]
embryo speedups...

this makes embryo just about the fastest "scripting vm" around - unless you
tie yourself to a particular cpu and add a jit for that cpu (which embryo
doesnt have).

 bash:                  4681.700 (estimate - ran only 1/100th of loop)
 python:                  38.193
 ruby:                    21.015
 perl:                    18.925
 java (gij-3.4) (no jit):  2.484
 embryo:                   1.041
 java (kaffe)      (jit):  0.176
 c:                        0.157

notice emrbyo is more than double the speed of the java vm. this is all
portable code - no jit tied to 1 cpu. we can add that later per cpu - but for
a vm/scripting solution thats cross-platform and runs anwyeher on 32, 64bit
cpus, ppc, x86, x86-64, alpha, arm, sparc, mips etc. it's pretty damn good.

yes this test is VERY naieve and simple and only tests a subset - but it
tests the general execution and interpreting engine, being able to make
logical decisions, interpret code and do math operations. we should do a more
comprehensive test, but this is pretty good for a simple one.

here's the source used:

bash:
#!/bin/bash
I=1
while [ $I -lt 1000000 ]; do
  let I++
done

python:
i = 1
while i < 100000000:
    i = i + 1

ruby:
1.upto(100000000) { }

perl:
#!/usr/bin/perl
for ($i = 1; $i < 100000000; $i++) {
}

java:
public class loop {
   public static void main(String[] args) {
      int i;
      for (i = 1; i < 100000000; i++) { }
   }
}

embryo:
main() {
   new i;
   for (i = 1; i < 100000000; i++) { }
}

c:
main() {
   int i;
   for (i = 1; i < 100000000; i++);
}

SVN revision: 11880

20 years agoa sane version of the EmbryoCell to float (and vice versa) macros
tsauerbeck [Wed, 13 Oct 2004 19:49:03 +0000 (19:49 +0000)]
a sane version of the EmbryoCell to float (and vice versa) macros

SVN revision: 11870

20 years agoStart tidying ecore_config
handyande [Wed, 13 Oct 2004 19:43:16 +0000 (19:43 +0000)]
Start tidying ecore_config

SVN revision: 11869

20 years agobah, i suck
tsauerbeck [Wed, 13 Oct 2004 19:34:04 +0000 (19:34 +0000)]
bah, i suck

SVN revision: 11868

20 years agocast correctly between Embryo_Cell and float
tsauerbeck [Wed, 13 Oct 2004 19:19:13 +0000 (19:19 +0000)]
cast correctly between Embryo_Cell and float

SVN revision: 11867

20 years agowarnings
tsauerbeck [Wed, 13 Oct 2004 19:04:45 +0000 (19:04 +0000)]
warnings

SVN revision: 11866

20 years agothe 'low level' edje var list functions decrement id by EDJE_VAR_MAGIC_BASE, too...
tsauerbeck [Wed, 13 Oct 2004 18:56:48 +0000 (18:56 +0000)]
the 'low level' edje var list functions decrement id by EDJE_VAR_MAGIC_BASE, too, so make sure we increment it before to get a correct value in the end

SVN revision: 11865

20 years agoboolean values can now be specified in the following ways: 0, false, off resp 1,...
tsauerbeck [Wed, 13 Oct 2004 18:07:56 +0000 (18:07 +0000)]
boolean values can now be specified in the following ways: 0, false, off resp 1, true, on (case insensitive)

SVN revision: 11864

20 years agocheck the type by hand... if declared - otherwise ASSUME its an int.
Carsten Haitzler [Wed, 13 Oct 2004 08:45:47 +0000 (08:45 +0000)]
check the type by hand... if declared - otherwise ASSUME its an int.

SVN revision: 11856

20 years agoBAD HANDY.... BAD! watch your types there... or we'll feed you cod liver oil!
Carsten Haitzler [Wed, 13 Oct 2004 07:20:35 +0000 (07:20 +0000)]
BAD HANDY.... BAD! watch your types there... or we'll feed you cod liver oil!
:)

SVN revision: 11855

20 years agoaccessing wrong memmber. fixed.
Carsten Haitzler [Wed, 13 Oct 2004 07:05:28 +0000 (07:05 +0000)]
accessing wrong memmber. fixed.

SVN revision: 11854

20 years agoallow text source and text style sources to be specified.. this lets multiple
Carsten Haitzler [Wed, 13 Oct 2004 03:43:42 +0000 (03:43 +0000)]
allow text source and text style sources to be specified.. this lets multiple
text parts "shadow" a controlling/parent text part. this allows multiple
window titles for example even tho the app only sets 1 title part. this
allows for interesting text effects with mutliepl text parts animating
differently... or you cna use invivlbe text parts ad "proxies" for
calculating sizes of stuff... :)

SVN revision: 11851

20 years agoadapted to embryo_cc changes
tsauerbeck [Tue, 12 Oct 2004 16:58:18 +0000 (16:58 +0000)]
adapted to embryo_cc changes

SVN revision: 11845

20 years agocommand line arguments are now handled in a sane way: '-i blah' instead of '-iblah...
tsauerbeck [Tue, 12 Oct 2004 16:57:38 +0000 (16:57 +0000)]
command line arguments are now handled in a sane way: '-i blah' instead of '-iblah' etc. removed error filename crap, we prefer to redirect stderr.

SVN revision: 11844

20 years agoportability improvements
tsauerbeck [Tue, 12 Oct 2004 16:20:12 +0000 (16:20 +0000)]
portability improvements

SVN revision: 11843

20 years agoworks on mingw now
tsauerbeck [Tue, 12 Oct 2004 16:15:54 +0000 (16:15 +0000)]
works on mingw now

SVN revision: 11842

20 years agoString concatenation ("foo""bar" -> "foobar") now works when used in arguments to...
tsauerbeck [Mon, 11 Oct 2004 20:48:32 +0000 (20:48 +0000)]
String concatenation ("foo""bar" -> "foobar") now works when used in arguments to PART/PROGRAM/IMAGE lookups, e.g. PART:"foo""bar" will look up the part id of "foobar".

SVN revision: 11836

20 years agooops, accessing random memory is bad
tsauerbeck [Mon, 11 Oct 2004 19:26:08 +0000 (19:26 +0000)]
oops, accessing random memory is bad

SVN revision: 11834

20 years agowarning fixes
tsauerbeck [Mon, 11 Oct 2004 18:12:26 +0000 (18:12 +0000)]
warning fixes

SVN revision: 11832

20 years agoImplemented string concatenation.
tsauerbeck [Mon, 11 Oct 2004 17:49:59 +0000 (17:49 +0000)]
Implemented string concatenation.
For example, "pants""off" becomes "pantsoff".

SVN revision: 11831

20 years agopart names need to be unique in a collection, too
tsauerbeck [Sun, 10 Oct 2004 15:18:07 +0000 (15:18 +0000)]
part names need to be unique in a collection, too

SVN revision: 11826

20 years agomore compile options.. allow image sot be FORCIBLY rescaled so u can include
Carsten Haitzler [Sun, 10 Oct 2004 11:58:43 +0000 (11:58 +0000)]
more compile options.. allow image sot be FORCIBLY rescaled so u can include
like 1/2 or 1/4 res images to make a smaller .eet :)

SVN revision: 11825

20 years agosmooth
tsauerbeck [Sun, 10 Oct 2004 11:29:00 +0000 (11:29 +0000)]
smooth

SVN revision: 11824

20 years agodon't print constant data
tsauerbeck [Sun, 10 Oct 2004 10:00:51 +0000 (10:00 +0000)]
don't print constant data

SVN revision: 11823

20 years agoadded edje_decc to cvsignore
tsauerbeck [Sun, 10 Oct 2004 08:22:54 +0000 (08:22 +0000)]
added edje_decc to cvsignore

SVN revision: 11822

20 years agoand dont use buf! :)
Carsten Haitzler [Sun, 10 Oct 2004 04:29:21 +0000 (04:29 +0000)]
and dont use buf! :)

SVN revision: 11821

20 years agoactually... error on any source file not being able to be found, decoded or
Carsten Haitzler [Sun, 10 Oct 2004 04:25:42 +0000 (04:25 +0000)]
actually... error on any  source file not being able to be found, decoded or
written out. images AND fonts. :)

SVN revision: 11820

20 years agowhen a font cannot be loaded (because -fd was omitted, for example), just print a...
tsauerbeck [Sat, 9 Oct 2004 16:23:29 +0000 (16:23 +0000)]
when a font cannot be loaded (because -fd was omitted, for example), just print a warning instead of an error message. i.e., fonts are treated the same way images are.

SVN revision: 11799

20 years agooption bug and hide if setting not allowed
handyande [Fri, 8 Oct 2004 22:28:27 +0000 (22:28 +0000)]
option bug and hide if setting not allowed

SVN revision: 11795

20 years agofixed an endless loop caused by unexpected preprocessor commands. tweaked the code...
tsauerbeck [Fri, 8 Oct 2004 17:03:04 +0000 (17:03 +0000)]
fixed an endless loop caused by unexpected preprocessor commands. tweaked the code a bit so its more readable, hopefully.

SVN revision: 11790

20 years agoNot to forget help text :)
handyande [Wed, 6 Oct 2004 20:46:27 +0000 (20:46 +0000)]
Not to forget help text :)

SVN revision: 11775

20 years agoFinally fix boolean up properly - phew
handyande [Wed, 6 Oct 2004 20:32:47 +0000 (20:32 +0000)]
Finally fix boolean up properly - phew

SVN revision: 11773

20 years agoOK - who added boolean, but did not allow it to save???
handyande [Wed, 6 Oct 2004 19:10:42 +0000 (19:10 +0000)]
OK - who added boolean, but did not allow it to save???

SVN revision: 11772

20 years ago1. note all the /* dup */ entries in edje_cc_handlers.c - we now are lenient
Carsten Haitzler [Wed, 6 Oct 2004 05:25:03 +0000 (05:25 +0000)]
1. note all the /* dup */ entries in edje_cc_handlers.c - we now are lenient
and allow image, font, images{} fonts {} programs{} program{} and scropt{}
sections in many mroe places...

SVN revision: 11764

20 years agoonly pass certain callbacks to smart parents...
Carsten Haitzler [Wed, 6 Oct 2004 02:34:01 +0000 (02:34 +0000)]
only pass certain callbacks to smart parents...

SVN revision: 11761

20 years agofont size updates... again
Carsten Haitzler [Wed, 6 Oct 2004 00:18:51 +0000 (00:18 +0000)]
font size updates... again

SVN revision: 11760

20 years agofont size change
Carsten Haitzler [Wed, 6 Oct 2004 00:14:24 +0000 (00:14 +0000)]
font size change

SVN revision: 11759

20 years agooops - NOw they agree. evas is fixed to 75 dpi - thats how it thinks now.
Carsten Haitzler [Wed, 6 Oct 2004 00:08:12 +0000 (00:08 +0000)]
oops - NOw they agree. evas is fixed to 75 dpi - thats how it thinks now.
maybe i should export this as engine and then evas calls? lets see.

SVN revision: 11758

20 years agothis has always been there - it measn xft, x and evas dont agree on the size
Carsten Haitzler [Wed, 6 Oct 2004 00:05:20 +0000 (00:05 +0000)]
this has always been there - it measn xft, x and evas dont agree on the size
of a "7 pixel" or "20 pixel" font. now they will. the numbers were fudged
frome examples... now they are pure :)

SVN revision: 11757

20 years agonorti norti. very norti.
Carsten Haitzler [Wed, 29 Sep 2004 10:23:56 +0000 (10:23 +0000)]
norti norti. very norti.
dont free list nodes and then proceed to use the list->next member of a freed
list node! :)

SVN revision: 11738

20 years agoignore loose indentation :)
Carsten Haitzler [Tue, 28 Sep 2004 03:06:21 +0000 (03:06 +0000)]
ignore loose indentation :)

SVN revision: 11735

20 years agoEmbryo documentation. About 90% done. Still some extra explanatory stuff to do...
ncn [Sat, 25 Sep 2004 14:37:39 +0000 (14:37 +0000)]
Embryo documentation.  About 90% done.  Still some extra explanatory stuff to do, and some bugs to iron out, but all the functions in the API now at least have something written about them.

SVN revision: 11722

20 years agofix engine ifdefs
Carsten Haitzler [Thu, 23 Sep 2004 21:45:59 +0000 (21:45 +0000)]
fix engine ifdefs

SVN revision: 11709

20 years agouse Ecore_Evas info on engine availability :)
Carsten Haitzler [Thu, 23 Sep 2004 21:45:50 +0000 (21:45 +0000)]
use Ecore_Evas info on engine availability :)

SVN revision: 11708

20 years agoEcore_Con module documentation, timer functions cleaned up, Time functions linked...
ncn [Thu, 23 Sep 2004 04:58:16 +0000 (04:58 +0000)]
Ecore_Con module documentation, timer functions cleaned up, Time functions linked into Ecore.h docs.

SVN revision: 11704

20 years agoCleaned up the FD Handler stuff, grouped it, linked it to the Ecore.h file description.
ncn [Thu, 23 Sep 2004 04:05:13 +0000 (04:05 +0000)]
Cleaned up the FD Handler stuff, grouped it, linked it to the Ecore.h file description.

SVN revision: 11703

20 years agoand dont reload if the image is generated pixels...
Carsten Haitzler [Thu, 23 Sep 2004 02:18:15 +0000 (02:18 +0000)]
and dont reload if the image is generated pixels...

SVN revision: 11701

20 years agoand invalidate that image...
Carsten Haitzler [Thu, 23 Sep 2004 02:08:26 +0000 (02:08 +0000)]
and invalidate that image...

SVN revision: 11700

20 years agoload - check! :)
Carsten Haitzler [Thu, 23 Sep 2004 01:58:50 +0000 (01:58 +0000)]
load - check! :)

SVN revision: 11699

20 years agoAdd boolean type. It's essentially the same as an INT, but at least we have a boolean...
xcomputerman [Thu, 23 Sep 2004 01:56:09 +0000 (01:56 +0000)]
Add boolean type. It's essentially the same as an INT, but at least we have a boolean property API, and the ability to store bools if the backend supports it (which edb doesn't).

SVN revision: 11698

20 years agoconditionally...
Carsten Haitzler [Thu, 23 Sep 2004 01:29:32 +0000 (01:29 +0000)]
conditionally...

SVN revision: 11697

20 years agoSome restructuring, clean up, grouping, explaining, etc. Getting there...
ncn [Wed, 22 Sep 2004 08:17:15 +0000 (08:17 +0000)]
Some restructuring, clean up, grouping, explaining, etc.  Getting there...

SVN revision: 11696

20 years agodont wipe filename if getting pixels for reading :)
Carsten Haitzler [Wed, 22 Sep 2004 04:54:39 +0000 (04:54 +0000)]
dont wipe filename if getting pixels for reading :)

SVN revision: 11695

20 years agoclip bug fix :)
Carsten Haitzler [Wed, 22 Sep 2004 04:37:51 +0000 (04:37 +0000)]
clip bug fix :)

SVN revision: 11694

20 years agoSome cleanup, grouped functions, about to transfer more info into the header file...
ncn [Wed, 22 Sep 2004 04:25:35 +0000 (04:25 +0000)]
Some cleanup, grouped functions, about to transfer more info into the header file descriptions.

SVN revision: 11693

20 years agoSome client message and ICCCM related functions.
Kim Woelders [Tue, 21 Sep 2004 19:18:45 +0000 (19:18 +0000)]
Some client message and ICCCM related functions.

SVN revision: 11687

20 years agoAdd setting background color of an Ecore_X_Window
handyande [Tue, 21 Sep 2004 13:19:18 +0000 (13:19 +0000)]
Add setting background color of an Ecore_X_Window

SVN revision: 11685

20 years agooops printf's
Carsten Haitzler [Tue, 21 Sep 2004 12:00:31 +0000 (12:00 +0000)]
oops printf's

SVN revision: 11684

20 years agofix mouse in/out grab issues
Carsten Haitzler [Tue, 21 Sep 2004 09:33:18 +0000 (09:33 +0000)]
fix mouse in/out grab issues

SVN revision: 11683

20 years agonull patch...
Carsten Haitzler [Tue, 21 Sep 2004 07:45:13 +0000 (07:45 +0000)]
null patch...

SVN revision: 11682

20 years agobrett's patch for resize and doc typos :)
Carsten Haitzler [Tue, 21 Sep 2004 03:15:42 +0000 (03:15 +0000)]
brett's patch for resize and doc typos :)

SVN revision: 11681

20 years agodebian update broke make dist ...
sleuth [Tue, 21 Sep 2004 00:51:51 +0000 (00:51 +0000)]
debian update broke make dist ...

Kevin Brosius <cobra@compuserve.com>

SVN revision: 11679

20 years agoadd some mroe comments for bored people who want to work on this :)
Carsten Haitzler [Mon, 20 Sep 2004 04:09:47 +0000 (04:09 +0000)]
add some mroe comments for bored people who want to work on this :)

SVN revision: 11673

20 years agohiq patch
Carsten Haitzler [Mon, 20 Sep 2004 03:14:42 +0000 (03:14 +0000)]
hiq patch

SVN revision: 11671

20 years agoSlight update for the debian packaging of imlib2, imlib2_loaders, ecore, edje;
swielinga [Sat, 18 Sep 2004 12:31:30 +0000 (12:31 +0000)]
Slight update for the debian packaging of imlib2, imlib2_loaders, ecore, edje;
more to come later.

SVN revision: 11665

20 years agono printfs
Carsten Haitzler [Fri, 17 Sep 2004 13:47:47 +0000 (13:47 +0000)]
no printfs

SVN revision: 11659

20 years agomouse out/int do good things now
Carsten Haitzler [Fri, 17 Sep 2004 13:46:55 +0000 (13:46 +0000)]
mouse out/int do good things now

SVN revision: 11658

20 years ago* unbreak my heart (evidence compat)
azundris [Wed, 15 Sep 2004 14:00:42 +0000 (14:00 +0000)]
* unbreak my heart (evidence compat)

SVN revision: 11643

20 years agoDoxygen, the right way (thanks raster)
xcomputerman [Wed, 15 Sep 2004 05:44:24 +0000 (05:44 +0000)]
Doxygen, the right way (thanks raster)

SVN revision: 11639

20 years agoBegone, ye foul C# comments!
xcomputerman [Wed, 15 Sep 2004 05:14:43 +0000 (05:14 +0000)]
Begone, ye foul C# comments!

SVN revision: 11637

20 years agobernhard's patch to handle new style device names as well as old.
Carsten Haitzler [Mon, 13 Sep 2004 23:46:47 +0000 (23:46 +0000)]
bernhard's patch to handle new style device names as well as old.

SVN revision: 11630

20 years agoglibtoolize
rbdpngn [Mon, 13 Sep 2004 05:38:15 +0000 (05:38 +0000)]
glibtoolize

SVN revision: 11625

20 years agoUse glibtoolize when libtoolize not available.
rbdpngn [Mon, 13 Sep 2004 05:29:37 +0000 (05:29 +0000)]
Use glibtoolize when libtoolize not available.

SVN revision: 11624

20 years agofix up grabs a bit more :)
Carsten Haitzler [Mon, 13 Sep 2004 03:56:39 +0000 (03:56 +0000)]
fix up grabs a bit more :)

SVN revision: 11623

20 years agono no. do it this way! :)
Carsten Haitzler [Mon, 13 Sep 2004 03:23:29 +0000 (03:23 +0000)]
no no. do it this way! :)

SVN revision: 11622

20 years agooops- for repat events this screws up grabbing..
Carsten Haitzler [Sun, 12 Sep 2004 04:49:07 +0000 (04:49 +0000)]
oops- for repat events this screws up grabbing..

SVN revision: 11612

20 years agomore message queue calls
Carsten Haitzler [Sat, 11 Sep 2004 02:59:23 +0000 (02:59 +0000)]
more message queue calls

SVN revision: 11607

20 years agoexpose the ability to process the message queue any time :)
Carsten Haitzler [Sat, 11 Sep 2004 02:41:23 +0000 (02:41 +0000)]
expose the ability to process the message queue any time :)

SVN revision: 11606

20 years agoCheck if descriptors exist (i.e. if edje_init() was run) before trying to use them.
rephorm [Thu, 9 Sep 2004 21:55:32 +0000 (21:55 +0000)]
Check if descriptors exist (i.e. if edje_init() was run) before trying to use them.

SVN revision: 11596

20 years agook that's it. fuck stdtypes.
Carsten Haitzler [Thu, 9 Sep 2004 00:48:12 +0000 (00:48 +0000)]
ok that's it. fuck stdtypes.

SVN revision: 11588

20 years agoactually delete ...edje_tmp at the start (add a -r since its a dir)
rephorm [Wed, 8 Sep 2004 01:49:37 +0000 (01:49 +0000)]
actually delete ...edje_tmp at the start (add a -r since its a dir)

SVN revision: 11564

20 years agoIntroduce ecore_x_disconnect().
Kim Woelders [Tue, 7 Sep 2004 19:47:46 +0000 (19:47 +0000)]
Introduce ecore_x_disconnect().

SVN revision: 11553

20 years agofix fonts in OTHEr states than default! :)
Carsten Haitzler [Tue, 7 Sep 2004 14:48:41 +0000 (14:48 +0000)]
fix fonts in OTHEr states than default! :)

SVN revision: 11545

20 years ago.spec binary additions
sleuth [Mon, 6 Sep 2004 03:35:37 +0000 (03:35 +0000)]
.spec binary additions

Kevin Brosius <cobra@compuserve.com>

SVN revision: 11528

20 years agouse animators... :)
Carsten Haitzler [Sun, 5 Sep 2004 08:11:36 +0000 (08:11 +0000)]
use animators... :)

SVN revision: 11521

20 years agoecore animators... IN!
Carsten Haitzler [Sun, 5 Sep 2004 08:00:10 +0000 (08:00 +0000)]
ecore animators... IN!

SVN revision: 11520

20 years agooops - if the edje ONLy has a swallow part.. bad things (tm) happen :)
Carsten Haitzler [Sat, 4 Sep 2004 09:45:59 +0000 (09:45 +0000)]
oops - if the edje ONLy has a swallow part.. bad things (tm) happen :)

SVN revision: 11515

20 years agoimplemented ecore_x_window_prop_borderless_get()
tsauerbeck [Thu, 2 Sep 2004 18:45:31 +0000 (18:45 +0000)]
implemented ecore_x_window_prop_borderless_get()

SVN revision: 11506

20 years agoadded some sanity checks to ecore_x_window_property_get
tsauerbeck [Thu, 2 Sep 2004 18:22:19 +0000 (18:22 +0000)]
added some sanity checks to ecore_x_window_property_get

SVN revision: 11505

20 years agoimplemented ecore_evas_data_get/set
tsauerbeck [Thu, 2 Sep 2004 16:50:18 +0000 (16:50 +0000)]
implemented ecore_evas_data_get/set

SVN revision: 11501

20 years agoif promoting compression we need to guess a new compression quality... :)
Carsten Haitzler [Thu, 2 Sep 2004 02:43:16 +0000 (02:43 +0000)]
if promoting compression we need to guess a new compression quality... :)

SVN revision: 11497

20 years agohelp fixed
Carsten Haitzler [Thu, 2 Sep 2004 01:10:38 +0000 (01:10 +0000)]
help fixed

SVN revision: 11495

20 years agoshould fixup system load/default combinations
handyande [Wed, 1 Sep 2004 20:55:23 +0000 (20:55 +0000)]
should fixup system load/default combinations

SVN revision: 11493

20 years agothis should make a lot of themers happy.
Carsten Haitzler [Wed, 1 Sep 2004 05:41:26 +0000 (05:41 +0000)]
this should make a lot of themers happy.

edje_cc (and edje_recc) now support:

-no-lossy                Do NOT allow images to be lossy
-no-comp                 Do NOT allow images to be lossless compression
-no-raw                  Do NOT allow images to be zero compression
-min-quality VAL         Do NOT allow lossy images with quality > VAL (0-100)
-max-quality VAL         Do NOT allow lossy images with quality < VAL (0-100)

this lest you forcibly make a theme .eet that is full quality with NO
compression of images, or just lossless compression (recommended for
distribution as an "original" .eet) and then make lossy only ones with min
and max quality levels.... so u can make small small small themes by just
giving up quality :)

SVN revision: 11489

20 years agoOops.
shadoi [Wed, 1 Sep 2004 01:42:31 +0000 (01:42 +0000)]
Oops.

SVN revision: 11476