summaryrefslogtreecommitdiff
path: root/content/handlers/image/rsvg.c
Commit message (Collapse)AuthorAgeFilesLines
* RSVG: fix colour conversionJohn-Mark Bell2018-01-201-3/+11
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-6/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* RSVG content handler: Remove unused assignement.Michael Drake2017-08-281-1/+0
|
* RSVG content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-281-15/+6
|
* Content API: Make content_broadcast take pointer to content_msg_data.Michael Drake2017-08-261-6/+6
|
* Update all core use of plotters to new APIVincent Sanders2017-02-111-4/+9
|
* Allow include directories to be added by sub makefilesVincent Sanders2016-06-061-1/+1
|
* fixup rsvg image handler for content API changesVincent Sanders2016-06-061-2/+4
|
* 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-0/+326