summaryrefslogtreecommitdiff
path: root/image
Commit message (Collapse)AuthorAgeFilesLines
* Remove webp image handlingVincent Sanders2015-04-214-265/+0
| | | | | | | | | | | | | | | | The bitmap and image handling interfaces have changed within NetSurf and the webp image handling has not been fixed up appropriately to cope. After discussion with the other developers it has been decided that the webp support is not worth the necessary development effort to rewrite and maintain. The webp format is not in wide usage and Mozilla, Microsoft and Apple have not adopted it. This means the removal will not adversely impact NetSurf. Resolves:2310
* Remove unecessary inclusion of the image bitmap headerVincent Sanders2015-04-203-4/+2
|
* Improve bitmap operation table interface documentation.Vincent Sanders2015-04-191-12/+56
|
* change rsvg image handler to use bitmap operation tableVincent Sanders2015-04-171-10/+11
|
* fixup risc os sprite image handler to use bitmap operation tableVincent Sanders2015-04-171-10/+10
|
* Move bitmap operations into an operation table.Vincent Sanders2015-04-138-146/+179
| | | | | | | The generic bitmap handlers provided by each frontend are called back from the core and therefore should be in an operation table. This was one of the very few remaining interfaces stopping the core code from being split into a library.
* PNG: add more volatile to appease GCCJohn-Mark Bell2015-02-241-2/+2
|
* Fix my spelling of teh everywhereVincent Sanders2014-11-181-2/+2
|
* Only include rsvg-cairo.h if it isn't alreadyJohn-Mark Bell2014-11-151-0/+2
|
* remove unecessary utils/types.hVincent Sanders2014-11-023-3/+4
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* Update the core to use the split operations table headersVincent Sanders2014-10-162-8/+12
| | | | Second in the series to decouple the core API usage from the frontends.
* remove content include from urldb headerVincent Sanders2014-07-171-0/+2
|
* reduce uncessary include usageVincent Sanders2014-05-181-0/+1
|
* move scheduleing into browser operation tableVincent Sanders2014-03-092-15/+18
|
* remove all references to using libMNGVincent Sanders2014-01-044-874/+0
|
* Fix two genuine bugs found by Coverity. Checking the wrong pointers for NULL.Michael Drake2013-10-231-10/+8
|
* Move BITMAP_SAVE_FULL_ALPHA out of core to RISC OS front end, where it belongs.Michael Drake2013-10-031-2/+0
|
* Remove BITMAP_READY flag.Michael Drake2013-10-031-1/+0
|
* Remove BITMAP_PERSISTENT flag.Michael Drake2013-10-031-3/+2
|
* move options includeVincent Sanders2013-05-282-2/+2
|
* split sources lists out to their subdirectories as first step towards using ↵Vincent Sanders2013-03-111-0/+17
| | | | core buildsystem
* Avoid calling bitmap_modified with NULL.John-Mark Bell2013-01-131-1/+2
|
* Can't clone a content that gets reflowed for a viewport size.Michael Drake2012-11-111-1/+4
|
* Allow reformats to different size.Michael Drake2012-11-111-5/+8
|
* make image content handlers title setting use the heap instead of the stack ↵Vincent Sanders2012-10-258-39/+75
| | | | and remove the possibility of buffer overruns
* More useful title info for images.Michael Drake2012-10-247-22/+28
|
* Remove last notion of bitmap suspension.Michael Drake2012-10-141-2/+1
|
* Remove suspension of bmp/gif images. It's completely redundant with the ↵Michael Drake2012-10-143-13/+0
| | | | convert on demand core image cache.
* reduce talloc usage to box tree layout onlyVincent Sanders2012-10-0311-54/+48
|
* Fix cases of returning pointers as bool for GCC 2.95.2.Michael Drake2012-09-291-1/+1
|
* fix windows build format specifiersVincent Sanders2012-08-121-6/+6
| | | | add install target for windows - creates installer rather than actually installing
* Avoid two duplicate lines.Michael Drake2012-08-101-8/+6
|
* allow netsurf to build with gtk3Vincent Sanders2012-05-161-1/+1
| | | | svn path=/trunk/netsurf/; revision=13926
* More work on about:imagecache entry listing table.Michael Drake2012-04-121-0/+24
| | | | svn path=/trunk/netsurf/; revision=13855
* about:imagecache gives URL links, and table is styled. This has revealed a ↵Rob Kendrick2012-03-251-0/+5
| | | | | | buffer overflow or similar here; reducing the buffer size to 1024 makes it very fragile with long URLs. svn path=/trunk/netsurf/; revision=13700
* 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