summaryrefslogtreecommitdiff
path: root/amiga/bitmap.c
Commit message (Collapse)AuthorAgeFilesLines
* Initialise bitmap ptr to NULLChris Young2011-09-081-1/+1
| | | | svn path=/trunk/netsurf/; revision=12780
* Show existing file size when file already exists on downloadChris Young2011-07-231-1/+2
| | | | svn path=/trunk/netsurf/; revision=12618
* Put a search icon where the old search favicon wasChris Young2011-07-021-0/+30
| | | | svn path=/trunk/netsurf/; revision=12558
* Remove unused ColorMap to CLUT functionChris Young2011-03-261-23/+0
| | | | svn path=/trunk/netsurf/; revision=12136
* Implement ask overwriteChris Young2011-03-261-0/+26
| | | | svn path=/trunk/netsurf/; revision=12135
* Squash warningJohn Mark Bell2011-03-091-1/+1
| | | | svn path=/trunk/netsurf/; revision=11954
* Use base type for gfxbaseChris Young2011-01-071-1/+2
| | | | svn path=/trunk/netsurf/; revision=11249
* Include os3support headerJohn Mark Bell2011-01-061-0/+2
| | | | svn path=/trunk/netsurf/; revision=11236
* Sprinkle some #ifdef __amigaos4__ aroundJohn Mark Bell2011-01-061-1/+3
| | | | svn path=/trunk/netsurf/; revision=11230
* Fix include directive -- case matters nowJohn Mark Bell2011-01-061-1/+1
| | | | svn path=/trunk/netsurf/; revision=11225
* Move drag icon stuff to own file; fix warningsChris Young2010-10-301-1/+0
| | | | svn path=/trunk/netsurf/; revision=10922
* Use function instead of directly calling DTM_WRITEChris Young2010-10-101-8/+4
| | | | svn path=/trunk/netsurf/; revision=10879
* Remove todo comment for something already done.Michael Drake2010-08-141-1/+0
| | | | svn path=/trunk/netsurf/; revision=10705
* Stop the alpha channel getting lost on scaled bitmapsChris Young2009-08-241-2/+2
| | | | svn path=/trunk/netsurf/; revision=9439
* Revert r9108, as component order in libnsgif due to be corrected.Chris Young2009-08-091-43/+5
| | | | svn path=/trunk/netsurf/; revision=9137
* Support new libnsgif by adding bitmap flag BITMAP_ABGR.Chris Young2009-08-071-8/+51
| | | | | | | | | | | | | | This tells big endian systems that the data is in ABGR instead of RGBA. It should be ignored on little endian systems! Add support in Amiga platform code. -> All platform code that could be compiled for big endian systems will need to be updated to recognise BITMAP_ABGR. This includes GTK and Framebuffer frontends. Both BITMAP_ABGR *and* the endianness of the host will most likely need to be checked and the allocated bitmap format and/or bitmap plotter changed to handle ABGR component order. svn path=/trunk/netsurf/; revision=9108
* Don't do higher quality scaling on OS4.0 as it doesn't work.Chris Young2009-07-121-1/+0
| | | | svn path=/trunk/netsurf/; revision=8484
* Rendering tab in options all done, new option to improve the scale quality ↵Chris Young2009-06-231-1/+5
| | | | | | | | | (bilinear filtering). This needs to be tested on 4.0 as I'm not sure if bilinear is valid there, might need to be BSAF_AVERAGE. svn path=/trunk/netsurf/; revision=7939
* Check that p96AllocBitMap actually allocated a bitmap (fixes unsat bug#61)Chris Young2009-05-301-4/+6
| | | | svn path=/trunk/netsurf/; revision=7658
* Too many 0sChris Young2009-05-171-1/+1
| | | | svn path=/trunk/netsurf/; revision=7522
* Fix alpha testing, set correctly for ILBMsChris Young2009-05-171-2/+2
| | | | svn path=/trunk/netsurf/; revision=7519
* IFF save now works - needed an unexpected NULL as the first parameter to ↵Chris Young2009-05-161-3/+3
| | | | | | | | | | DTM_WRITE DTA_ObjName is now the URL, as this is the only field that is being written by picture.datatype (bug in picture.datatype?). ObjAuthor and ObjAnnotation left in as the DTM_COPY method might be able to use them. svn path=/trunk/netsurf/; revision=7518
* Copy and save images as IFF ILBM attempt 2.Chris Young2009-05-161-11/+49
| | | | | | | Copy now works, saving just creates an empty file - probably something wrong with my DTM_WRITE call. svn path=/trunk/netsurf/; revision=7517
* Copy and save images in IFF ILBM format. Currently, the data in the BODY ↵Chris Young2009-05-161-0/+18
| | | | | | | | chunk is wrong. svn path=/trunk/netsurf/; revision=7516
* Stop local history from crashing, display mostly works (no thumbnails and ↵Chris Young2009-03-081-0/+2
| | | | | | | | offset wrong to window), no event handling other than closing the window. svn path=/trunk/netsurf/; revision=6730
* Stop OS4.1 losing alpha channels when scaling imagesChris Young2009-03-051-1/+4
| | | | svn path=/trunk/netsurf/; revision=6720
* Move native bitmap creation/caching routine into bitmap.cChris Young2009-02-251-1/+106
| | | | svn path=/trunk/netsurf/; revision=6619
* Some bitmap caching - not making much difference and using up a lot of gfx ↵Chris Young2008-12-281-1/+7
| | | | | | | | mem, may need to make this a configurable option. svn path=/trunk/netsurf/; revision=5943
* Handle opaqueness a bitChris Young2008-12-271-6/+23
| | | | svn path=/trunk/netsurf/; revision=5935
* Change memory allocations to MEMF_PRIVATE to enable paging on OS4.1.Chris Young2008-11-021-2/+2
| | | | svn path=/trunk/netsurf/; revision=5649
* Remove debugChris Young2008-10-111-2/+0
| | | | svn path=/trunk/netsurf/; revision=5541
* Fix Amiga bitmap_get_bpp to be same as others. (It's bytes per pixel, not ↵Michael Drake2008-09-071-9/+12
| | | | | | bits.) Fix param comments for vbitmap. svn path=/trunk/netsurf/; revision=5281
* More error checkingChris Young2008-08-151-7/+41
| | | | svn path=/trunk/netsurf/; revision=5129
* Updated to support changes in image/bitmap.hChris Young2008-08-121-15/+38
| | | | svn path=/trunk/netsurf/; revision=5074
* Initial Amiga port files, mostly empty stub functions.Chris Young2008-08-021-0/+164
svn path=/trunk/netsurf/; revision=4864