summaryrefslogtreecommitdiff
path: root/content/handlers/image/ico.c
Commit message (Collapse)AuthorAgeFilesLines
* implement content opacity check through the function tableVincent Sanders2020-05-131-2/+30
|
* improve content header usageVincent Sanders2020-05-071-0/+1
|
* remove unused external declaration and unecessary header useVincent Sanders2019-10-061-4/+4
|
* content: Rename content_broadcast_errorcode()Daniel Silverstone2019-08-051-3/+3
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* change content get_source_data interfaces to return uint8_t and size_tVincent Sanders2019-05-051-2/+2
| | | | | previously these interfaces returned char * and unsigned int which was undesirable.
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* ICO content handler: Convert to using content_broadcast_errorcode().Michael Drake2017-08-271-8/+3
|
* Content API: Make content_broadcast take pointer to content_msg_data.Michael Drake2017-08-261-3/+3
|
* Allow include directories to be added by sub makefilesVincent Sanders2016-06-061-2/+2
|
* Update content to split public and internal APIVincent Sanders2016-06-061-1/+3
|
* 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/+300