summaryrefslogtreecommitdiff
path: root/image
Commit message (Collapse)AuthorAgeFilesLines
...
* NetSurf options rework (a=vince r=daniels,jmb)Vincent Sanders2012-03-222-6/+10
| | | | svn path=/trunk/netsurf/; revision=13548
* Treat image/x-png as a synonym for image/pngJohn Mark Bell2012-01-292-2/+4
| | | | svn path=/trunk/netsurf/; revision=13414
* ensure favicon is correctly setVincent Sanders2011-12-311-1/+15
| | | | svn path=/trunk/netsurf/; revision=13358
* fix icon image handler marking genrated bitmaps as modifiedVincent Sanders2011-12-301-22/+23
| | | | svn path=/trunk/netsurf/; revision=13355
* Change GTK plotting to use cairo surfaces throughoutVincent Sanders2011-12-305-27/+89
| | | | svn path=/trunk/netsurf/; revision=13354
* Beginnings of a gstreamer binding. I've been sitting on this for too longJohn Mark Bell2011-12-052-0/+228
| | | | svn path=/trunk/netsurf/; revision=13248
* content_get_url -> hlcache_handle_get_url, content__get_url -> content_get_urlJohn Mark Bell2011-12-042-2/+2
| | | | svn path=/trunk/netsurf/; revision=13236
* Fix format specifierJohn Mark Bell2011-10-301-1/+1
| | | | svn path=/trunk/netsurf/; revision=13101
* Rework error handling to avoid cast alignment warning noiseJohn Mark Bell2011-10-301-20/+21
| | | | svn path=/trunk/netsurf/; revision=13100
* Squash warningsJohn Mark Bell2011-10-181-25/+26
| | | | svn path=/trunk/netsurf/; revision=13069
* Add missing titleChris Young2011-10-151-0/+7
| | | | svn path=/trunk/netsurf/; revision=13058
* Remove unused variableJohn Mark Bell2011-10-141-1/+0
| | | | svn path=/trunk/netsurf/; revision=13047
* Fix little-endian hostsChris Young2011-10-141-8/+8
| | | | | | Remove additional data copy svn path=/trunk/netsurf/; revision=13046
* Make endian-neutralChris Young2011-10-131-8/+6
| | | | svn path=/trunk/netsurf/; revision=13044
* fix image cache summary information to properly use a format stringVincent Sanders2011-10-122-128/+201
| | | | | | | remove snprintf buffer overflow possibility fix the about:imagecache fetcher to contain the output formatting and use summary information formatting svn path=/trunk/netsurf/; revision=13039
* add about:imagecache some of teh implementation needs cleaning upVincent Sanders2011-10-102-1/+191
| | | | svn path=/trunk/netsurf/; revision=13030
* Fix nsgif_get_internal to decode bitmap (similar to r12980)Chris Young2011-10-091-0/+5
| | | | svn path=/trunk/netsurf/; revision=13018
* Pedantic style fixesJohn Mark Bell2011-10-081-2/+4
| | | | svn path=/trunk/netsurf/; revision=12999
* Choose right ico image for typical url bar.Michael Drake2011-10-071-1/+3
| | | | svn path=/trunk/netsurf/; revision=12989
* fix ico handler to actually decode to bitmap when called via get_internalVincent Sanders2011-10-071-0/+7
| | | | svn path=/trunk/netsurf/; revision=12980
* metadata links stored in contentsVincent Sanders2011-10-072-10/+3
| | | | | | browser uses metadata links for favicons svn path=/trunk/netsurf/; revision=12977
* Port more internals to nsurl. Front ends may need updating.Michael Drake2011-10-031-1/+2
| | | | svn path=/trunk/netsurf/; revision=12926
* remove unnecessary duplicate variableVincent Sanders2011-09-161-13/+12
| | | | svn path=/trunk/netsurf/; revision=12799
* Appease GCC 3.4John Mark Bell2011-09-151-7/+7
| | | | svn path=/trunk/netsurf/; revision=12798
* Virtualise content handler finalisation calls. Remove pointless implementations.John Mark Bell2011-09-1512-61/+0
| | | | svn path=/trunk/netsurf/; revision=12797
* fix divide by zero in stats reporting if the cache was never usedVincent Sanders2011-09-151-26/+45
| | | | svn path=/trunk/netsurf/; revision=12794
* Make high level cache, low level cache and image cache all be initialised ↵Vincent Sanders2011-09-101-4/+8
| | | | | | | | | from passed parameters Calculate all cache sizes from single memory cache size option and sanity check have a single global struct to hold all parameters instead of several individual variables svn path=/trunk/netsurf/; revision=12784
* Use ISO rand() rather than BSD random() as it is more widely supported.Chris Young2011-09-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=12772
* move bitmap cache initialisation up a levelVincent Sanders2011-09-072-39/+30
| | | | | | improve stats reporting svn path=/trunk/netsurf/; revision=12770
* C89.François Revel2011-09-061-1/+2
| | | | svn path=/trunk/netsurf/; revision=12767
* make the image_cache cleaner less brain deadVincent Sanders2011-09-063-61/+139
| | | | svn path=/trunk/netsurf/; revision=12766
* Add more cache stats.Michael Drake2011-09-051-1/+32
| | | | svn path=/trunk/netsurf/; revision=12741
* Count total number of images that were not rendered and log on exit.Michael Drake2011-09-051-0/+9
| | | | svn path=/trunk/netsurf/; revision=12740
* Add Image cache and inegrate png and jpeg content handlersVincent Sanders2011-09-046-210/+969
| | | | | | | Current periodic cache clean algorithm is poor and requires replacing with something suitable (probably a segregated LRU) The speculative load algorithm is likewise poor and only uses the image size to make a decision. svn path=/trunk/netsurf/; revision=12720
* Remove mime_type parameter from content handler content_type callback APIJohn Mark Bell2011-09-0310-10/+10
| | | | svn path=/trunk/netsurf/; revision=12704
* refactor bitmap out of generic content structureVincent Sanders2011-08-319-58/+154
| | | | svn path=/trunk/netsurf/; revision=12686
* make image content handlers build conditional from teh makefileVincent Sanders2011-08-2822-193/+69
| | | | svn path=/trunk/netsurf/; revision=12673
* Initial image content handler refactorVincent Sanders2011-08-2713-970/+542
| | | | svn path=/trunk/netsurf/; revision=12671
* Redirect non-fatal errors to the NetSurf logChris Young2011-07-311-0/+16
| | | | svn path=/trunk/netsurf/; revision=12633
* Fix GCC 4.6 warnings in coreJohn Mark Bell2011-07-261-2/+1
| | | | svn path=/trunk/netsurf/; revision=12629
* Fix transition from LOADING to ERROR state after content has been locked for ↵John Mark Bell2011-07-201-1/+0
| | | | | | conversion svn path=/trunk/netsurf/; revision=12614
* Direct access of png_structp members is deprecatedJohn Mark Bell2011-07-071-1/+1
| | | | svn path=/trunk/netsurf/; revision=12594
* Remove plotter table global. Pass a redraw context around redraw functions. ↵Michael Drake2011-06-3010-29/+33
| | | | | | Knockout could be handled better. Note: untested on most front ends. svn path=/trunk/netsurf/; revision=12543
* Unify content_redraw params in content_redraw_data struct. Core and RISC OS ↵Michael Drake2011-06-2810-107/+82
| | | | | | content handlers updated. svn path=/trunk/netsurf/; revision=12529
* Fix warnings.Michael Drake2011-06-131-2/+2
| | | | svn path=/trunk/netsurf/; revision=12472
* Redirect libpng errors to the standard NetSurf logfileChris Young2011-06-121-0/+19
| | | | svn path=/trunk/netsurf/; revision=12471
* refactor content handler initilisation to use named initialisorsVincent Sanders2011-05-0910-150/+74
| | | | svn path=/trunk/netsurf/; revision=12341
* Fix tiled redraw of SVGs.Michael Drake2011-05-091-3/+58
| | | | svn path=/trunk/netsurf/; revision=12340
* Wrap macro.Michael Drake2011-05-091-1/+4
| | | | svn path=/trunk/netsurf/; revision=12339
* Wrap fix.Michael Drake2011-05-091-1/+2
| | | | svn path=/trunk/netsurf/; revision=12338