]> git.eshelyaron.com Git - emacs.git/commit
Improve drawing performance on macOS
authorAlan Third <alan@idiocy.org>
Wed, 16 Dec 2020 21:12:04 +0000 (21:12 +0000)
committerAlan Third <alan@idiocy.org>
Fri, 1 Jan 2021 22:41:26 +0000 (22:41 +0000)
commit107978365e17ede02d85b52fcbd99512dcc87428
tree8762b5d7634d86f46634ccbd7833258c53cca0f5
parentaac17c9dca21462df57367123301b7c940f9243a
Improve drawing performance on macOS

* configure.ac: Require IOSurface framework.
* src/nsterm.h: New EmacsSurface class and update EmacsView
definitions.
* src/nsterm.m (ns_update_end):
(ns_unfocus): Use new unfocusDrawingBuffer method.
(ns_draw_window_cursor): Move ns_focus to before we set colors.
([EmacsView dealloc]):
([EmacsView viewDidResize:]): Handle new EmacsSurface class.
([EmacsView initFrameFromEmacs:]): Remove reference to old method.
([EmacsView createDrawingBuffer]): Remove method.
([EmacsView focusOnDrawingBuffer]):
([EmacsView windowDidChangeBackingProperties:]): Use new EmacsSurface
class.
([EmacsView unfocusDrawingBuffer]): New method.
([EmacsView copyRect:to:]): Get information from the context instead
of direct from the IOSurface.
([EmacsView updateLayer]): Use new EmacsSurface class.
([EmacsView copyRect:to:]): Use memcpy to copy bits around instead of
using NS image functions.
([EmacsSurface initWithSize:ColorSpace:]):
([EmacsSurface dealloc]):
([EmacsSurface getSize]):
([EmacsSurface getContext]):
([EmacsSurface releaseContext]):
([EmacsSurface getSurface]):
([EmacsSurface copyContentsTo:]): New class and methods.
configure.ac
src/nsterm.h
src/nsterm.m