aboutsummaryrefslogtreecommitdiff
path: root/dw/fltkimgbuf.cc
AgeCommit message (Collapse)Author
2024-08-07Fix pedantic warningsRodrigo Arias Mallo
Reviewed-by: dogma
2015-01-27Some debugging code.Sebastian Geerken
2014-06-01Some reorganisation (and reverted change in fltkimgbuf.cc).Sebastian Geerken
2014-06-01Added correctExtremes*.Sebastian Geerken
2014-05-14Avoid creation of unnecessary image bufs (at alt-text to img switch)Jorge Arellano Cid
This is the first of a patch series for image code bugs that have severe impact on performance. With these testing files: 1imgA.html = <img src="maj00s.png" alt="img1"> 2imgSA.html = <img src="maj00s.png" alt="img1"> <img src="maj00s.png" alt="img12"> 3imgSA.html = <img src="maj00s.png" alt="img1"> <img src="maj00s.png" alt="img12"> <img src="maj00s.png" alt="img123"> 2imgA.html = <img src="maj00s.png" alt="img1"> <img src="maj21s.png" alt="img12"> 3imgA.html = <img src="maj00s.png" alt="img1"> <img src="maj21s.png" alt="img12"> <img src="c10s.png" alt="img123"> This are the results: .------------------------------------------------------------------. |imgbufs | No patch | Patched #1 | | | first time | upon reload | first time | upon reload | |------------------------------------------------------------------- |1imgA.html | 2 | 1 | 1 | 1 | |2imgSA.html | 3 | 2 | 1 | 2 | |3imgSA.html | 4 | 3 | 1 | 3 | |------------------------------------------------------------------- |2imgA.html | 4 | 2 | 2 | 2 | |3imgA.html | 6 | 3 | 3 | 3 | '------------------------------------------------------------------'
2014-02-02trim some spacescorvid
2013-12-21Some more RTFL messages.Sebastian Geerken
2013-12-20RTFL messages.Sebastian Geerken
2013-12-04Fix a couple of bugs in scaleRowBeautifulJorge Arellano Cid
An infinite loop situation (corner case race condition) and also avoid rescaling already scaled rows (speed).
2013-11-18Optimized drawing of very small background images.Sebastian Geerken
2013-06-18TyposJorge Arellano Cid
2013-06-17Cleanup.Sebastian Geerken
2013-06-17Considering gamma correction when scaling images.Sebastian Geerken
2013-06-17Deactivated MSG.Sebastian Geerken
2013-06-17Corrections of gamma.Sebastian Geerken
2013-06-17Added gamma correction value to dw::core::ImgBuf.Sebastian Geerken
2013-06-16Comment.Sebastian Geerken
2013-06-16Prevent dangerous integer overflow errors (bug #1129).Sebastian Geerken
2013-06-15Typos.corvid
2013-06-15Comments and ChangeLog.Sebastian Geerken
2013-06-14Better image scaling.Sebastian Geerken
2013-01-11fix up dw namespace commentsp37sitdu
2012-10-30trim some spacescorvid
2011-04-16merge in recent changes from main repocorvid
2011-04-04clearer MSG for suspicious image sizecorvid
I saw a MSG with size 0x[something], and of course I thought it was complaining that a size was given in hex notation.
2011-01-22fix image drawingcorvid
2011-01-12fltkimgbufcorvid
2009-10-15remove "using namespace" statements from header filesJohannes Hofmann
"using namespace" in headers also affects all files that include the header which is unwanted and unexpected in most cases.
2009-06-29check for suspicious image size requests in FltkImgbuf::getScaledBuf()Johannes Hofmann
In addition to the test in html.cc we need to check here for excessive image sizes because * images can be scaled preserving their original aspect ratio by just specifing one dimension * image sizes can be specified via CSS.
2009-03-02Updated the GPL copyright note in the source filesDetlef Riekenberg
2009-02-09whitespace cleanup: 's/ +$//g'Jorge Arellano Cid
2009-02-08's/if(/if (/g' 's/for(/for (/g' 's/while(/while (/g', and indentation.Jorge Arellano Cid
2009-01-16Added lout/msg.h and normalized debug messages to use it.Jorge Arellano Cid
2009-01-04Debugging aids.Jorge Arellano Cid
2009-01-04[mq]: ../dw/fltkimgbuf.ccJorge Arellano Cid
2009-01-04[mq]: outJorge Arellano Cid
2008-09-24- Moved the dw2 tree into dillo2's tree.jcid