summaryrefslogtreecommitdiff
path: root/frontends/amiga/plotters.c
Commit message (Collapse)AuthorAgeFilesLines
* Amiga: Do not use pre-multiplied alpha with CompositeTags() (ie. OS4 RTG)Chris Young2022-04-011-2/+24
|
* Revert "Amiga: do not force 32-bit bitmaps"Chris Young2021-06-281-8/+8
| | | | This reverts commit 793f514220c15c6bb1b0db31bf0b6d0cfea0fc7b.
* Amiga: do not force 32-bit bitmapsChris Young2021-06-281-8/+8
| | | | This appears to be unnecessary
* AMIGA: Use RTG calls on OS3Chris Young2021-06-281-10/+7
| | | | Enabled for experimentation
* Amiga: BitMap always alloced with the ami_rtg_ function, so should be freed ↵Chris Young2021-05-171-5/+1
| | | | with it too.
* Make screen pointer accesible through an accessor function onlyChris Young2019-05-101-1/+7
|
* single precision testChris Young2018-11-211-10/+10
|
* Plotters: Remove width param from path plotter.Michael Drake2018-05-231-2/+0
| | | | We now use the stroke_width in the plot_style.
* Plotters: Change stroke width in the plot_style_t to fixed point.Michael Drake2018-05-231-4/+4
|
* Don't destroy layers if we never created them.Chris Young2017-12-231-0/+2
|
* Ensure we have a layer before deleting it.Chris Young2017-12-231-1/+1
|
* update plotter logging to use a catagoryVincent Sanders2017-09-061-23/+11
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-5/+5
|
* Try to ensure we get the correct type of native BitMapChris Young2017-02-131-2/+2
|
* Remove direct_render, only ever used for debuggingChris Young2017-02-131-2/+1
|
* Make gui_globals less... globalChris Young2017-02-131-0/+25
|
* Get render bitmap size via functionChris Young2017-02-131-0/+6
|
* Manage shared pens internally unless we need multiple lists (eg. per ↵Chris Young2017-02-131-4/+29
| | | | browser_window)
* Alloc gui_global structure when initialisingChris Young2017-02-131-7/+15
|
* Remove use of global context data from Amiga frontendChris Young2017-02-131-31/+49
|
* update amiga plot APIVincent Sanders2017-02-111-340/+512
|
* Revert "Ensure we free the pen list memory"Chris Young2016-12-061-10/+9
| | | | This reverts commit 74d7c2d2c2b2161701c1f0258bbfc7feb753ac1e.
* Ensure we free the pen list memoryChris Young2016-12-061-9/+10
|
* Move ItemPool compatiblity into the header and renameChris Young2016-11-201-4/+4
|
* Add missing includesChris Young2016-11-191-0/+1
|
* more allocvec/malloc changesChris Young2016-11-191-17/+13
|
* Move slab size def into memory.cChris Young2016-11-191-0/+1
|
* Move memory functions from misc.c to memory.cChris Young2016-11-191-1/+1
|
* OS3-related commentsChris Young2016-08-111-1/+7
|
* Make browserglob private to gui.cChris Young2016-07-091-1/+0
|
* Force friend BitMap usage at depths>8bppChris Young2016-07-081-17/+15
| | | | Fix logic so this forced usage actually applies
* Attempt to help gcc out a littleChris Young2016-07-031-2/+3
|
* Rationalise gui_globals a bitChris Young2016-06-011-0/+3
|
* move mouse and pointer state header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move the CSS content handlerVincent Sanders2016-05-261-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+920