summaryrefslogtreecommitdiffstats
path: root/drw.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Improve speed of drw_text when provided with large strings"Gravatar Hiltjo Posthuma 2021-08-201-5/+2
| | | | | | | This reverts commit c585e8e498ec6f9c423ab8ea07cf853ee5b05fbe. It causes issues with truncation of characters when the text does not fit and so on. The patch should be reworked and properly tested.
* Improve speed of drw_text when provided with large stringsGravatar Miles Alan 2021-08-091-2/+5
| | | | | | Calculates len & ew in drw_font_getexts loop by incrementing instead of decrementing; as such avoids proportional increase in time spent in loop based on provided strings size.
* Fix memory leaks in drwGravatar Hiltjo Posthuma 2020-06-111-0/+1
| | | | | Synced from dwm. Patch by Alex Flierl <shad0w73@freenet.de>, thanks.
* Prepared 4.9 release.Gravatar Anselm R Garbe 2019-02-021-1/+15
|
* drw: drw_scm_create: use Clr typeGravatar Hiltjo Posthuma 2017-11-031-1/+1
| | | | in this context XftColor is a too low-level type.
* die() consistency: always add newlineGravatar Hiltjo Posthuma 2016-08-121-3/+3
|
* import new drw from libsl and minor fixes.Gravatar Markus Teich 2016-06-031-109/+132
| | | | | | | | | - extract drawitem function (code deduplication) - fix bug where inputw was not correctly calculated from the widest item, but just from the one with the longest strlen() which is not the same. It's better now, but does not account for fallback fonts, since it would be too slow to calculate all the correct item widths on startup. - minor code style fixes (indentation, useless line breaks)
* drw: cleanup drw_text, prevent gcc warning false-positive of unused varGravatar Hiltjo Posthuma 2015-10-201-21/+14
| | | | | ... we don't allow passing text is NULL anymore either, for that behaviour just use drw_rect() (it is used in dwm).
* drw: simplify drw_font_xcreate and prevent a potential unneeded allocationGravatar Hiltjo Posthuma 2015-10-201-22/+19
|
* drw: a valid (non-NULL) Drw and Fnt context must be passedGravatar Hiltjo Posthuma 2015-10-201-16/+3
| | | | | don't do these checks on this level. However for resource drw_*_free we will allow it.
* add sbase-style ecalloc(), calloc: or dieGravatar Hiltjo Posthuma 2015-10-201-12/+7
| | | | ... remove intermediary variables
* drw style improvementsGravatar Hiltjo Posthuma 2015-09-271-76/+89
| | | | this makes the code-style more consistent aswell.
* Use libdraw: add Xft and fallback-fonts support to graphics libGravatar Hiltjo Posthuma 2015-06-271-0/+413
- libdraw, util: add drw.{c,h}, util.{c,h} and update code. - libdraw: fix drw_rect(): use w and h parameter. - libdraw: print errstr if last character in string was ":" (sbase). - libdraw: drw_clr_free() allow valid free(NULL). - config.def.h: set default font to monospace. - cleanup() on exit. - LICENSE: update license string for dmenu -v to 2015. - LICENSE: add myself to LICENSE