all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#30609: 26.0.91; underline should be drawn behind text
@ 2018-02-25 23:05 Aaron Jensen
  2018-02-26  3:46 ` Aaron Jensen
  2018-02-26 15:44 ` Eli Zaretskii
  0 siblings, 2 replies; 6+ messages in thread
From: Aaron Jensen @ 2018-02-25 23:05 UTC (permalink / raw)
  To: 30609

I don't know if it's true on all platforms, but at least on the mac the
text decorations (like underlines) are drawn after the glyph causing
them to overlap the descenders. Typically underlines are drawn behind
the characters as they are less important than the characters
themselves.
I'd be happy to submit a patch to change the order if no one sees a problem with this.

Maybe some day we a text-decoration-skip equivalent, but that's a bit
beyond my capabilities at the moment :)





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30609: 26.0.91; underline should be drawn behind text
  2018-02-25 23:05 bug#30609: 26.0.91; underline should be drawn behind text Aaron Jensen
@ 2018-02-26  3:46 ` Aaron Jensen
  2018-02-26 15:46   ` Eli Zaretskii
  2018-02-26 15:44 ` Eli Zaretskii
  1 sibling, 1 reply; 6+ messages in thread
From: Aaron Jensen @ 2018-02-26  3:46 UTC (permalink / raw)
  To: 30609

It seems like there's a bit more to this than I thought. It looks like
ns_draw_glyph_string_foreground sometimes draws the background too,
covering the underline. It didn't do this with emacs -Q, but it did
with my config. It seems like I'd need to actually draw the background
separately, then the underline, then the glyph above. Any thoughts
about this or other suggestions?

Thanks,

Aaron





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30609: 26.0.91; underline should be drawn behind text
  2018-02-25 23:05 bug#30609: 26.0.91; underline should be drawn behind text Aaron Jensen
  2018-02-26  3:46 ` Aaron Jensen
@ 2018-02-26 15:44 ` Eli Zaretskii
  1 sibling, 0 replies; 6+ messages in thread
From: Eli Zaretskii @ 2018-02-26 15:44 UTC (permalink / raw)
  To: Aaron Jensen; +Cc: 30609

> From: Aaron Jensen <aaronjensen@gmail.com>
> Date: Sun, 25 Feb 2018 15:05:29 -0800
> 
> I don't know if it's true on all platforms, but at least on the mac the
> text decorations (like underlines) are drawn after the glyph causing
> them to overlap the descenders. Typically underlines are drawn behind
> the characters as they are less important than the characters
> themselves.
> I'd be happy to submit a patch to change the order if no one sees a problem with this.

I'm far from being an expert in this area, but AFAICT, such a change
could cause the underline to become partially or even fully invisible,
at least in some situations.  For example, if the underline is to be
drawn below one or more images, or some special characters, or what we
use to display characters with no font.  That's because we sometimes
clear the entire character cell with the background color before
drawing the foreground, and that would erase the part of the underline
below that cell.  Right?





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30609: 26.0.91; underline should be drawn behind text
  2018-02-26  3:46 ` Aaron Jensen
@ 2018-02-26 15:46   ` Eli Zaretskii
  2018-02-26 21:10     ` Aaron Jensen
  0 siblings, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2018-02-26 15:46 UTC (permalink / raw)
  To: Aaron Jensen; +Cc: 30609

> From: Aaron Jensen <aaronjensen@gmail.com>
> Date: Sun, 25 Feb 2018 19:46:55 -0800
> 
> It seems like there's a bit more to this than I thought. It looks like
> ns_draw_glyph_string_foreground sometimes draws the background too,
> covering the underline. It didn't do this with emacs -Q, but it did
> with my config. It seems like I'd need to actually draw the background
> separately, then the underline, then the glyph above. Any thoughts
> about this or other suggestions?

Yes, this is what I feared, and that's why I think simply switching
the order will not give good results.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30609: 26.0.91; underline should be drawn behind text
  2018-02-26 15:46   ` Eli Zaretskii
@ 2018-02-26 21:10     ` Aaron Jensen
  2018-02-26 21:38       ` Alan Third
  0 siblings, 1 reply; 6+ messages in thread
From: Aaron Jensen @ 2018-02-26 21:10 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 30609

On Mon, Feb 26, 2018 at 7:46 AM, Eli Zaretskii <eliz@gnu.org> wrote:
> Yes, this is what I feared, and that's why I think simply switching
> the order will not give good results.

I may be able to move the text decoration code to the font drawing,
but text decoration is done for more than fonts, so that could result
in some duplication or nsterm referencing nsfont which would then
reference nsterm. If that's ok, I can look into that.

The other option would be to move the background drawing code out of
the font rendering. I don't know all of the places that it is done, so
that may be cumbersome.

One other, completely different idea that may not work or may be
really slow would be to do a color replacement--only replacing pixels
that match the background color with the underline color. I have no
idea if reading from the canvas in this way is slow. This would end up
giving a similar effect to text-decoration-skip.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#30609: 26.0.91; underline should be drawn behind text
  2018-02-26 21:10     ` Aaron Jensen
@ 2018-02-26 21:38       ` Alan Third
  0 siblings, 0 replies; 6+ messages in thread
From: Alan Third @ 2018-02-26 21:38 UTC (permalink / raw)
  To: Aaron Jensen; +Cc: 30609

[-- Attachment #1: Type: text/plain, Size: 438 bytes --]

On 26 Feb 2018 9:11 p.m., "Aaron Jensen" <aaronjensen@gmail.com> wrote:


I may be able to move the text decoration code to the font drawing,
but text decoration is done for more than fonts, so that could result
in some duplication or nsterm referencing nsfont which would then
reference nsterm. If that's ok, I can look into that.


The NS port has two font backends: nsfont and macfont. If you make changes
you'll have to support both.

[-- Attachment #2: Type: text/html, Size: 1032 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-02-26 21:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-25 23:05 bug#30609: 26.0.91; underline should be drawn behind text Aaron Jensen
2018-02-26  3:46 ` Aaron Jensen
2018-02-26 15:46   ` Eli Zaretskii
2018-02-26 21:10     ` Aaron Jensen
2018-02-26 21:38       ` Alan Third
2018-02-26 15:44 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.