Flutter macOS Embedder
FlutterDisplayLink Class Reference

#import <FlutterDisplayLink.h>

Inheritance diagram for FlutterDisplayLink:
TestDisplayLink _FlutterDisplayLink

Instance Methods

(void) - invalidate
 Invalidates the display link. More...
 

Class Methods

(instancetype) + displayLinkWithView:
 

Properties

id< FlutterDisplayLinkDelegatedelegate
 
BOOL paused
 Pauses and resumes the display link. More...
 
CFTimeInterval nominalOutputRefreshPeriod
 

Detailed Description

Provides notifications of display refresh.

Internally FlutterDisplayLink will use at most one CVDisplayLink per screen shared for all views belonging to that screen. This is necessary because each CVDisplayLink comes with its own thread.

All methods must be called on main thread.

Definition at line 21 of file FlutterDisplayLink.h.

Method Documentation

◆ displayLinkWithView:

+ (instancetype) displayLinkWithView: (NSView*)  view

Creates new instance tied to provided NSView. FlutterDisplayLink will track view display changes transparently to synchronize update with display refresh.

Definition at line 53 of file FlutterDisplayLink.mm.

292  :(NSView*)view {
293  return [[_FlutterDisplayLink alloc] initWithView:view];
294 }

Referenced by TEST_F().

◆ invalidate

- (void) invalidate

Invalidates the display link.

Definition at line 53 of file FlutterDisplayLink.mm.

296  {
297  [self doesNotRecognizeSelector:_cmd];
298 }

Referenced by TEST_F().

Property Documentation

◆ delegate

- (id<FlutterDisplayLinkDelegate>) delegate
readwritenonatomicweak

Delegate must be set on main thread. Delegate method will be also called on main thread.

Definition at line 30 of file FlutterDisplayLink.h.

Referenced by TEST_F().

◆ nominalOutputRefreshPeriod

- (CFTimeInterval) nominalOutputRefreshPeriod
readatomicassign

Returns the nominal refresh period of the display to which the view currently belongs (in seconds). If view does not belong to any display, returns 0.

Definition at line 38 of file FlutterDisplayLink.h.

◆ paused

- (BOOL) paused
readwriteatomicassign

Pauses and resumes the display link.

Definition at line 33 of file FlutterDisplayLink.h.

Referenced by TEST_F().


The documentation for this class was generated from the following files: