summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add imlib2.morph.morph to build chunkbaserock/morphRichard Dale2013-05-131-0/+13
|
* Fix drawing of closed polygons in certain situations (ticket 2309).Kim Woelders2013-03-241-1/+1
| | | | | | | | Drawing of the closing line could be skipped depending on the specific vertex coordinates (and order). Can't say that I undestand the code completely but this change seems to fix the problem, and I don't think it can cause trouble.
* Change INCLUDES to AM_CPPFLAGS.Kim Woelders2013-03-244-9/+9
| | | | INCLUDES is deprecated.
* trunk: remove use of AM_PROG_CC_STDC as AC_PROG_CC does it.Cedric BAIL2013-01-041-1/+0
| | | | | | | Patch by Doug Newgard <scimmia22@outlook.com> SVN revision: 82148
* autotools: move to AC_CONFIG_HEADERS.Cedric BAIL2013-01-041-1/+1
| | | | | | | Patch by Doug Newgard <scimmia22@outlook.com>. SVN revision: 82135
* TGA loader: Fix for corrupt RLE format.Kim Woelders2012-09-201-1/+2
| | | | | | Patch by Matias Garcia/Ross Video. SVN revision: 76919
* Update ChangeLog.v1.4.5Kim Woelders2011-08-151-43/+312
| | | | SVN revision: 62487
* 1.4.5.Kim Woelders2011-08-151-2/+2
| | | | SVN revision: 62486
* Avoid referencing /usr/X11R6 when x_dir is not set.Kim Woelders2011-04-151-3/+2
| | | | | | ... which normally it will not be, AFAICT. SVN revision: 58696
* Fix program linking (ticket 725).Kim Woelders2011-04-151-7/+7
| | | | SVN revision: 58695
* PNM loader: Refactor around progress and exits.Kim Woelders2011-04-091-346/+128
| | | | SVN revision: 58520
* Fix loading of .pbm's (P4) when width is not a multiple of 8.Kim Woelders2011-04-091-7/+39
| | | | SVN revision: 58519
* Indent (most) .c files.Kim Woelders2011-04-0930-2275/+2532
| | | | SVN revision: 58518
* Better image cache time stamp test.Kim Woelders2011-03-201-1/+1
| | | | SVN revision: 57918
* Fix pnm image loading in certain situations (ticket 721).Kim Woelders2011-03-111-12/+26
| | | | | | | | "It fails with "large" images, written with multiple pixels on the same line." Patch by quentin.stievenart@gmail.com SVN revision: 57697
* png loader: do not hit "interlaced" member of the png ptr structMike Frysinger2011-02-191-5/+9
| | | | | | | | this should work with libpng 1.[245].x ... did not check anything older than that though patch by Thomas Klausner SVN revision: 57171
* png loader: use png_jmpbuf() macro rather than hitting jmpbuf directlyMike Frysinger2011-02-191-2/+2
| | | | | | | | this should work with libpng 1.[245].x ... did not check anything older than that though patch by Thomas Klausner SVN revision: 57170
* no more debian dir in our svn - debian now handles this tehmselves.Carsten Haitzler2010-11-0811-163/+0
| | | | SVN revision: 54306
* Fix typosLucas De Marchi2010-09-202-6/+6
| | | | | | | | "he->the" where appropriate SVN revision: 52493
* Fix common misspellingsLucas De Marchi2010-09-0920-67/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following misspellings were fixed: adn->and alwasy->always arbitary->arbitrary cant->can't commerical->commercial comprimise->compromise consistant->consistent dependant->dependent didnt->didn't doesnt->doesn't enviroments->environments foudn->found fucntion->function isnt->isn't iwth->with mroe->more neccesary->necessary onyl->only paranthesis->parenthesis parralel->parallel refernces->references seperate->separate shoudl->should soem->some wasnt->wasn't wiht->with wokr->work SVN revision: 52023
* Fix imlib_render_image_part_on_drawable_at_size() ...Kim Woelders2010-09-021-1/+1
| | | | | | ... when using color modifier and not scaling (ticket 576). SVN revision: 51846
* Revert and re-apply badnull patchLucas De Marchi2010-08-261-2/+2
| | | | | | | | | | | Revert previous patch generated by badnull.cocci script, and apply the new one. The main difference is that assert and assert-like functions are not touched anymore. SVN revision: 51650
* Convert (hopefully) all comparisons to NULLLucas De Marchi2010-08-2116-35/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apply badzero.cocci, badnull.coci and badnull2.cocci This should convert all cases where there's a comparison to NULL to simpler forms. This patch applies the following transformations: code before patch ||code after patch =============================================================== return a == NULL; return !a; return a != NULL; return !!a; func(a == NULL); func(!a); func(a != NULL); func(!!a); b = a == NULL; b = !a; b = a != NULL; b = !!a; b = a == NULL ? c : d; b = !a ? c : d; b = a != NULL ? c : d; b = a ? c : d; other cases: a == NULL !a a != NULL a SVN revision: 51487
* Apply memset-calloc.cocciLucas De Marchi2010-08-132-6/+3
| | | | | | | | | | | | Change calls to malloc + memset to calloc whenever an automatic conversion can be done. Possible candidates are not treated here, only the ones we can be sure the conversion is safe. SVN revision: 51078
* FORMATTINGLucas De Marchi2010-08-041-1/+0
| | | | | | | | | | | | | | | | * Remove vim modelines: find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \; find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \; * Remove leading blank lines: find . -name '*.[cxh]' -exec sed -i '/./,$!d' If you use vim, use this in your .vimrc: set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0 SVN revision: 50816
* Fix reading tiff images with orientation other than ORIENTATION_TOPLEFT ↵Kim Woelders2010-07-261-43/+189
| | | | | | | | | (ticket 563). There are almost certainly still issues to be fixed, particularly around progess() and certain combinations of orientation and tiling. SVN revision: 50515
* Avoid some duplicated code.Kim Woelders2010-07-261-39/+20
| | | | SVN revision: 50514
* imlib2_view stuff.Kim Woelders2010-07-261-33/+77
| | | | | | | | | - Add -s option to show scaled image. - Handle WM_DELETE_WINDOW. - Quit on keypress 'q'. - Trivial cleanups. SVN revision: 50513
* Remove unneeded code with notnull.cocci scriptLucas De Marchi2010-07-143-18/+9
| | | | | | | | | | | | | | | | | The notnull.cocci script from Coccinelle finds places where you check if a variable is NULL, but it's known not to be NULL. The check can be safely removed. For example, this code would be caught by notnull: if (!var) return; if (var && var->fld) { ... } It's needless to check again if var is not NULL because if it's in fact NULL, it would have returned on the previous "if". This commit removes all the trivial places where this pattern happens. Another patch will be generated for the more complex cases. SVN revision: 50241
* Update ChangeLog.v1.4.4Kim Woelders2010-05-051-0/+12
| | | | SVN revision: 48636
* 1.4.4.Kim Woelders2010-05-051-2/+2
| | | | SVN revision: 48635
* New ChangeLog.Kim Woelders2010-05-051-0/+5482
| | | | SVN revision: 48634
* Add rule to generate ChangeLog.Kim Woelders2010-05-051-0/+3
| | | | SVN revision: 48633
* minor buglet - w * w - duh!Carsten Haitzler2010-04-081-1/+1
| | | | SVN revision: 47825
* Remove unused __imlib_FileField functions.Kim Woelders2010-04-052-107/+0
| | | | SVN revision: 47773
* No need for libtoolize twice?Kim Woelders2010-04-051-2/+0
| | | | SVN revision: 47772
* 1.4.3.v1.4.3Kim Woelders2010-03-141-2/+2
| | | | SVN revision: 47222
* Remove .cvsignores.Kim Woelders2010-03-1411-130/+0
| | | | SVN revision: 47214
* Remove ancient ChangeLog.Kim Woelders2010-03-141-3007/+0
| | | | SVN revision: 47213
* No need to touch README.Kim Woelders2010-03-141-1/+0
| | | | SVN revision: 47212
* Oops - forgot extern.Kim Woelders2010-02-271-1/+1
| | | | SVN revision: 46591
* Avoid cast.Kim Woelders2010-02-201-4/+4
| | | | SVN revision: 46335
* Only check XShmAttach once in __imlib_ShmGetXImage().Kim Woelders2010-02-201-8/+16
| | | | SVN revision: 46334
* Fix excessive checking for shm extension in __imlib_GrabDrawableToRGBA().Kim Woelders2010-02-203-2/+5
| | | | SVN revision: 46333
* Add .gitignore.Kim Woelders2010-02-201-0/+48
| | | | SVN revision: 46332
* Fix for libpng-1.4 (png_check_sig->png_sig_cmp).Kim Woelders2010-02-111-1/+1
| | | | SVN revision: 46088
* Fix build.Michael Jennings2010-02-072-1/+3
| | | | SVN revision: 45971
* there is no m4 dir anymore.Gustavo Sverzut Barbieri2010-02-051-2/+0
| | | | SVN revision: 45908
* aclocal flag could be needed. I prefer being polite and saying nothing about ↵Vincent Torri2010-01-131-0/+2
| | | | | | libtool... SVN revision: 45093
* Enable silent rules in building imlib2Christopher Michael2009-12-061-0/+1
| | | | SVN revision: 44212