summaryrefslogtreecommitdiff
path: root/frontends/amiga/dt_anim.c
Commit message (Collapse)AuthorAgeFilesLines
* change content get_source_data interfaces to return uint8_t and size_tVincent Sanders2019-05-051-3/+3
| | | | | previously these interfaces returned char * and unsigned int which was undesirable.
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* Content API: Make content_broadcast take pointer to content_msg_data.Michael Drake2017-08-261-1/+1
|
* update amiga plot APIVincent Sanders2017-02-111-2/+5
|
* remove ami_misc_allocvec_clearChris Young2016-11-191-3/+2
|
* Move memory functions from misc.c to memory.cChris Young2016-11-191-1/+1
|
* Update content to split public and internal APIVincent Sanders2016-06-061-1/+3
|
* Ensure variables are declared correctlyChris Young2016-06-021-2/+2
|
* move plotters header into public APIVincent Sanders2016-05-301-1/+1
|
* move bitmap API header to core include directoryVincent Sanders2016-05-261-1/+1
|
* move image content handlers to accomodate core build changesVincent Sanders2016-05-231-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+365