all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#34710: the mode line flicks on set-window-vscroll
@ 2019-03-02 10:25 Tak Kunihiro
  2019-03-02 20:10 ` Alan Third
  2019-03-07  0:25 ` Tak Kunihiro
  0 siblings, 2 replies; 12+ messages in thread
From: Tak Kunihiro @ 2019-03-02 10:25 UTC (permalink / raw)
  To: 34710; +Cc: 国広卓也

On Emacs-26.1.92 build for macOS, I see the mode line flicks when I
scroll-up using pixel-scroll-mode and mouse wheel.  The mode line does
not flick on scrolling-down.  I do not see this problem in
Emacs-26.1.92 build for Windows.

macOS$ /Downloads/emacs-26.1.92/nextstep/Emacs.app/Contents/MacOS/Emacs -Q
M-x pixel-scroll-mode
M-: (pixel-scroll-up 1) ; => the mode line flicks
M-: (pixel-scroll-down 1) ;=> no flick

I narrow down the problem and notice that following
two blocks response differently.

#+begin_src emacs-lisp
(dolist (vs (number-sequence 1 10))
  (set-window-vscroll nil vs t)
  (sit-for 0))
;; the mode line flicks
#+end_src

#+begin_src emacs-lisp
(dolist (vs (number-sequence 1 10))
  (set-window-vscroll nil vs t))
;; no flick
#+end_src

Do you have idea?






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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-02 10:25 bug#34710: the mode line flicks on set-window-vscroll Tak Kunihiro
@ 2019-03-02 20:10 ` Alan Third
  2019-03-03  4:15   ` Tak Kunihiro
  2019-03-04  9:06   ` Robert Pluim
  2019-03-07  0:25 ` Tak Kunihiro
  1 sibling, 2 replies; 12+ messages in thread
From: Alan Third @ 2019-03-02 20:10 UTC (permalink / raw)
  To: Tak Kunihiro; +Cc: 34710

On Sat, Mar 02, 2019 at 07:25:13PM +0900, Tak Kunihiro wrote:
> On Emacs-26.1.92 build for macOS, I see the mode line flicks when I
> scroll-up using pixel-scroll-mode and mouse wheel.  The mode line does
> not flick on scrolling-down.  I do not see this problem in
> Emacs-26.1.92 build for Windows.
> 
> macOS$ /Downloads/emacs-26.1.92/nextstep/Emacs.app/Contents/MacOS/Emacs -Q
> M-x pixel-scroll-mode
> M-: (pixel-scroll-up 1) ; => the mode line flicks
> M-: (pixel-scroll-down 1) ;=> no flick
> 
> I narrow down the problem and notice that following
> two blocks response differently.
> 
> #+begin_src emacs-lisp
> (dolist (vs (number-sequence 1 10))
>   (set-window-vscroll nil vs t)
>   (sit-for 0))
> ;; the mode line flicks
> #+end_src
> 
> #+begin_src emacs-lisp
> (dolist (vs (number-sequence 1 10))
>   (set-window-vscroll nil vs t))
> ;; no flick
> #+end_src
> 
> Do you have idea?

I believe it’s a problem with running redisplay rapidly (sit-for) and
the way we’re drawing in NS. We end up with macOS demanding a screen
update, and Emacs unable to deliver due to there being another
redisplay coming up.

The patch attached to this discussion doesn’t have the problem:

https://lists.gnu.org/archive/html/emacs-devel/2019-02/msg00354.html

However Robert Pluim reported serious performance problems with it. I
haven’t been able to replicate them.

-- 
Alan Third





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-02 20:10 ` Alan Third
@ 2019-03-03  4:15   ` Tak Kunihiro
  2019-03-04  9:06   ` Robert Pluim
  1 sibling, 0 replies; 12+ messages in thread
From: Tak Kunihiro @ 2019-03-03  4:15 UTC (permalink / raw)
  To: Alan Third; +Cc: 国広卓也, 34710

The patch solved the problem.

I also see that it takes more time to scroll a line
using pixel-scroll-up and pixel-scroll-down.

In principle, pixel-scroll-mode wants to scroll a line slowly.
I am on MacBook Pro (Retina, 13-inch, Late 2012) with Mojave 10.14.3,
and so far, I’m happy enough with the performance.



> On Mar 3, 2019, at 5:10 AM, Alan Third <alan@idiocy.org> wrote:
> 
> On Sat, Mar 02, 2019 at 07:25:13PM +0900, Tak Kunihiro wrote:
>> On Emacs-26.1.92 build for macOS, I see the mode line flicks when I
>> scroll-up using pixel-scroll-mode and mouse wheel.  The mode line does
>> not flick on scrolling-down.  I do not see this problem in
>> Emacs-26.1.92 build for Windows.
>> 
>> macOS$ /Downloads/emacs-26.1.92/nextstep/Emacs.app/Contents/MacOS/Emacs -Q
>> M-x pixel-scroll-mode
>> M-: (pixel-scroll-up 1) ; => the mode line flicks
>> M-: (pixel-scroll-down 1) ;=> no flick
>> 
>> I narrow down the problem and notice that following
>> two blocks response differently.
>> 
>> #+begin_src emacs-lisp
>> (dolist (vs (number-sequence 1 10))
>>  (set-window-vscroll nil vs t)
>>  (sit-for 0))
>> ;; the mode line flicks
>> #+end_src
>> 
>> #+begin_src emacs-lisp
>> (dolist (vs (number-sequence 1 10))
>>  (set-window-vscroll nil vs t))
>> ;; no flick
>> #+end_src
>> 
>> Do you have idea?
> 
> I believe it’s a problem with running redisplay rapidly (sit-for) and
> the way we’re drawing in NS. We end up with macOS demanding a screen
> update, and Emacs unable to deliver due to there being another
> redisplay coming up.
> 
> The patch attached to this discussion doesn’t have the problem:
> 
> https://lists.gnu.org/archive/html/emacs-devel/2019-02/msg00354.html
> 
> However Robert Pluim reported serious performance problems with it. I
> haven’t been able to replicate them.






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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-02 20:10 ` Alan Third
  2019-03-03  4:15   ` Tak Kunihiro
@ 2019-03-04  9:06   ` Robert Pluim
  2019-03-04 19:25     ` Alan Third
  1 sibling, 1 reply; 12+ messages in thread
From: Robert Pluim @ 2019-03-04  9:06 UTC (permalink / raw)
  To: Alan Third; +Cc: Tak Kunihiro, 34710

Alan Third <alan@idiocy.org> writes:

> I believe it’s a problem with running redisplay rapidly (sit-for) and
> the way we’re drawing in NS. We end up with macOS demanding a screen
> update, and Emacs unable to deliver due to there being another
> redisplay coming up.
>
> The patch attached to this discussion doesn’t have the problem:
>
> https://lists.gnu.org/archive/html/emacs-devel/2019-02/msg00354.html
>
> However Robert Pluim reported serious performance problems with it. I
> haven’t been able to replicate them.

I can try it again. Perhaps something in my configuration is causing
this.

Robert





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-04  9:06   ` Robert Pluim
@ 2019-03-04 19:25     ` Alan Third
  2019-03-04 21:07       ` Robert Pluim
  0 siblings, 1 reply; 12+ messages in thread
From: Alan Third @ 2019-03-04 19:25 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Tak Kunihiro, 34710

On Mon, Mar 04, 2019 at 10:06:20AM +0100, Robert Pluim wrote:
> Alan Third <alan@idiocy.org> writes:
> 
> > I believe it’s a problem with running redisplay rapidly (sit-for) and
> > the way we’re drawing in NS. We end up with macOS demanding a screen
> > update, and Emacs unable to deliver due to there being another
> > redisplay coming up.
> >
> > The patch attached to this discussion doesn’t have the problem:
> >
> > https://lists.gnu.org/archive/html/emacs-devel/2019-02/msg00354.html
> >
> > However Robert Pluim reported serious performance problems with it. I
> > haven’t been able to replicate them.
> 
> I can try it again. Perhaps something in my configuration is causing
> this.

If you can try and track it down that would be very helpful.

The only thing I can think of that could make it very slow is drawing
the buffer to the screen, but that really shouldn’t be as slow as
you’re experiencing, it is, after all, just drawing an image to the
screen.
-- 
Alan Third





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-04 19:25     ` Alan Third
@ 2019-03-04 21:07       ` Robert Pluim
  2019-03-04 22:45         ` Alan Third
  0 siblings, 1 reply; 12+ messages in thread
From: Robert Pluim @ 2019-03-04 21:07 UTC (permalink / raw)
  To: Alan Third; +Cc: Tak Kunihiro, 34710

Alan Third <alan@idiocy.org> writes:

> On Mon, Mar 04, 2019 at 10:06:20AM +0100, Robert Pluim wrote:
>> Alan Third <alan@idiocy.org> writes:
>> 
>> > I believe it’s a problem with running redisplay rapidly (sit-for) and
>> > the way we’re drawing in NS. We end up with macOS demanding a screen
>> > update, and Emacs unable to deliver due to there being another
>> > redisplay coming up.
>> >
>> > The patch attached to this discussion doesn’t have the problem:
>> >
>> > https://lists.gnu.org/archive/html/emacs-devel/2019-02/msg00354.html
>> >
>> > However Robert Pluim reported serious performance problems with it. I
>> > haven’t been able to replicate them.
>> 
>> I can try it again. Perhaps something in my configuration is causing
>> this.
>
> If you can try and track it down that would be very helpful.
>
> The only thing I can think of that could make it very slow is drawing
> the buffer to the screen, but that really shouldn’t be as slow as
> you’re experiencing, it is, after all, just drawing an image to the
> screen.

To be clear: the slowness I experience does not seem wholly related to
redisplay: if I move down in a file using 'C-n', without the buffer
scrolling, the movement is very slow. Then when it does actually
update the screen because Iʼve moved point off the bottom, it is again
slow (by a rough measurement, moving from the top to the bottom of my
org file using C-v is approximately twice as slow).

(this is all with 'emacs -Q')

Iʼve just run another test where I scroll my org file programmatically
rather than interactively, and then your patch makes no discernable
difference:

(benchmark-run 1000
               (goto-char (point-min))
               (condition-case nil
                   (while t
                     (scroll-up-command))
                 (error nil)))
                 
takes ~15 seconds in both vanilla emacs-26 and with your patch.

Are there any other tests you'd like me to run? (I know nothing about
macOS profiling tools)

Robert





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-04 21:07       ` Robert Pluim
@ 2019-03-04 22:45         ` Alan Third
  2019-03-05  9:06           ` Robert Pluim
  0 siblings, 1 reply; 12+ messages in thread
From: Alan Third @ 2019-03-04 22:45 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Tak Kunihiro, 34710

On Mon, Mar 04, 2019 at 10:07:25PM +0100, Robert Pluim wrote:
> To be clear: the slowness I experience does not seem wholly related to
> redisplay: if I move down in a file using 'C-n', without the buffer
> scrolling, the movement is very slow. Then when it does actually
> update the screen because Iʼve moved point off the bottom, it is again
> slow (by a rough measurement, moving from the top to the bottom of my
> org file using C-v is approximately twice as slow).
> 
> (this is all with 'emacs -Q')
> 
> Iʼve just run another test where I scroll my org file programmatically
> rather than interactively, and then your patch makes no discernable
> difference:
> 
> (benchmark-run 1000
>                (goto-char (point-min))
>                (condition-case nil
>                    (while t
>                      (scroll-up-command))
>                  (error nil)))
>                  
> takes ~15 seconds in both vanilla emacs-26 and with your patch.
> 
> Are there any other tests you'd like me to run? (I know nothing about
> macOS profiling tools)

Thanks for trying. I can’t think of anything to test right now but
I’ll have a think and get back to you.

What sort of hardware are you running on? Are you running Emacs
fullscreen on a 4k display or similar?
-- 
Alan Third





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-04 22:45         ` Alan Third
@ 2019-03-05  9:06           ` Robert Pluim
  2019-03-05 17:09             ` Robert Pluim
  0 siblings, 1 reply; 12+ messages in thread
From: Robert Pluim @ 2019-03-05  9:06 UTC (permalink / raw)
  To: Alan Third; +Cc: Tak Kunihiro, 34710

Alan Third <alan@idiocy.org> writes:

> On Mon, Mar 04, 2019 at 10:07:25PM +0100, Robert Pluim wrote:
>> takes ~15 seconds in both vanilla emacs-26 and with your patch.
>> 
>> Are there any other tests you'd like me to run? (I know nothing about
>> macOS profiling tools)
>
> Thanks for trying. I can’t think of anything to test right now but
> I’ll have a think and get back to you.
>
> What sort of hardware are you running on? Are you running Emacs
> fullscreen on a 4k display or similar?

Itʼs a late 2018 macbook pro 13", i7 cpu. The external monitors are:

(display-monitor-attributes-list)
(((name . "Monitor1")
  (geometry 0 0 1920 1080)
  (workarea 0 23 1920 1057)
  (mm-size 594 334)
  (frames #<frame *Summary gmane.emacs.bugs* 0x7fcda78819b0> #<frame *ielm* 0x7fcdad8efa80>)
  (source . "NS"))
 ((name . "Monitor2")
  (geometry -1920 0 1920 1080)
  (workarea -1920 0 1920 1080)
  (mm-size 594 334)
  (frames)
  (source . "NS")))

so not 4k, and I normally run with multiple non-maximized frames (but
my testing was with a single default frame).

Robert





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-05  9:06           ` Robert Pluim
@ 2019-03-05 17:09             ` Robert Pluim
  2019-03-06  8:06               ` Alan Third
  0 siblings, 1 reply; 12+ messages in thread
From: Robert Pluim @ 2019-03-05 17:09 UTC (permalink / raw)
  To: Alan Third; +Cc: Tak Kunihiro, 34710

Robert Pluim <rpluim@gmail.com> writes:

> so not 4k, and I normally run with multiple non-maximized frames (but
> my testing was with a single default frame).

So Iʼve decided that this was all down to key-repeat rate. I had that
set to maximum already, but I went into system preferences, set it
lower, exited emacs, set it back, and now emacs with your patch is OK.

'Did you try rebooting it'ly yours :-)

Robert





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-05 17:09             ` Robert Pluim
@ 2019-03-06  8:06               ` Alan Third
  2019-03-06  9:13                 ` Robert Pluim
  0 siblings, 1 reply; 12+ messages in thread
From: Alan Third @ 2019-03-06  8:06 UTC (permalink / raw)
  To: Robert Pluim; +Cc: Tak Kunihiro, 34710

On Tue, Mar 05, 2019 at 06:09:41PM +0100, Robert Pluim wrote:
> Robert Pluim <rpluim@gmail.com> writes:
> 
> > so not 4k, and I normally run with multiple non-maximized frames (but
> > my testing was with a single default frame).
> 
> So Iʼve decided that this was all down to key-repeat rate. I had that
> set to maximum already, but I went into system preferences, set it
> lower, exited emacs, set it back, and now emacs with your patch is OK.

Good to know, but still sounds like performance could be improved.

And I still can’t replicate it. Perhaps it’s a combination of multiple
factors.

Can you try this patch and see if it improves anything, please?

modified   src/nsterm.m
@@ -1168,7 +1168,6 @@ static NSRect constrain_frame_rect(NSRect frameRect, bool isFullscreen)
 
 #ifdef NS_IMPL_COCOA
   [NSGraphicsContext setCurrentContext:nil];
-  [view display];
 #else
   block_input ();
 
It’s possible this will cause it to drop frames and make things worse.

-- 
Alan Third





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-06  8:06               ` Alan Third
@ 2019-03-06  9:13                 ` Robert Pluim
  0 siblings, 0 replies; 12+ messages in thread
From: Robert Pluim @ 2019-03-06  9:13 UTC (permalink / raw)
  To: Alan Third; +Cc: Tak Kunihiro, 34710

Alan Third <alan@idiocy.org> writes:

> On Tue, Mar 05, 2019 at 06:09:41PM +0100, Robert Pluim wrote:
>> Robert Pluim <rpluim@gmail.com> writes:
>> 
>> > so not 4k, and I normally run with multiple non-maximized frames (but
>> > my testing was with a single default frame).
>> 
>> So Iʼve decided that this was all down to key-repeat rate. I had that
>> set to maximum already, but I went into system preferences, set it
>> lower, exited emacs, set it back, and now emacs with your patch is OK.
>
> Good to know, but still sounds like performance could be improved.
>
> And I still can’t replicate it. Perhaps it’s a combination of multiple
> factors.
>
> Can you try this patch and see if it improves anything, please?
>
> modified   src/nsterm.m
> @@ -1168,7 +1168,6 @@ static NSRect constrain_frame_rect(NSRect frameRect, bool isFullscreen)
>  
>  #ifdef NS_IMPL_COCOA
>    [NSGraphicsContext setCurrentContext:nil];
> -  [view display];
>  #else
>    block_input ();
>  
> It’s possible this will cause it to drop frames and make things worse.

That makes no perceptible difference in my not-too-accurate test,
which is scrolling my org-file using C-n from top to bottom: ≅ 17
seconds in both cases.

Robert





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

* bug#34710: the mode line flicks on set-window-vscroll
  2019-03-02 10:25 bug#34710: the mode line flicks on set-window-vscroll Tak Kunihiro
  2019-03-02 20:10 ` Alan Third
@ 2019-03-07  0:25 ` Tak Kunihiro
  1 sibling, 0 replies; 12+ messages in thread
From: Tak Kunihiro @ 2019-03-07  0:25 UTC (permalink / raw)
  To: 34710

With my casual test, the patch makes pixel-wise scroll 5% faster.


> On Mar 6, 2019, at 17:06 , Alan Third <alan@idiocy.org> wrote:
> 
> On Tue, Mar 05, 2019 at 06:09:41PM +0100, Robert Pluim wrote:
>> Robert Pluim <rpluim@gmail.com> writes:
>> 
>>> so not 4k, and I normally run with multiple non-maximized frames (but
>>> my testing was with a single default frame).
>> 
>> So Iʼve decided that this was all down to key-repeat rate. I had that
>> set to maximum already, but I went into system preferences, set it
>> lower, exited emacs, set it back, and now emacs with your patch is OK.
> 
> Good to know, but still sounds like performance could be improved.
> 
> And I still can’t replicate it. Perhaps it’s a combination of multiple
> factors.
> 
> Can you try this patch and see if it improves anything, please?
> 
> modified   src/nsterm.m
> @@ -1168,7 +1168,6 @@ static NSRect constrain_frame_rect(NSRect frameRect, bool isFullscreen)
> 
> #ifdef NS_IMPL_COCOA
>   [NSGraphicsContext setCurrentContext:nil];
> -  [view display];
> #else
>   block_input ();
> 
> It’s possible this will cause it to drop frames and make things worse.

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

end of thread, other threads:[~2019-03-07  0:25 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-02 10:25 bug#34710: the mode line flicks on set-window-vscroll Tak Kunihiro
2019-03-02 20:10 ` Alan Third
2019-03-03  4:15   ` Tak Kunihiro
2019-03-04  9:06   ` Robert Pluim
2019-03-04 19:25     ` Alan Third
2019-03-04 21:07       ` Robert Pluim
2019-03-04 22:45         ` Alan Third
2019-03-05  9:06           ` Robert Pluim
2019-03-05 17:09             ` Robert Pluim
2019-03-06  8:06               ` Alan Third
2019-03-06  9:13                 ` Robert Pluim
2019-03-07  0:25 ` Tak Kunihiro

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.