summaryrefslogtreecommitdiff
path: root/frontends/framebuffer/fbtk
Commit message (Collapse)AuthorAgeFilesLines
* update framebuffer toolkit logging to use a ctagoryVincent Sanders2017-09-071-20/+22
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-063-12/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* update framebuffer to new plotter APIVincent Sanders2017-02-111-7/+21
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-131-1/+0
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* move plotters header into public APIVincent Sanders2016-05-302-2/+2
|
* move desktop window header into public APIVincent Sanders2016-05-308-8/+8
|
* move frontends into sub directoryVincent Sanders2016-05-1510-0/+3238