Skip to content

Commit

Permalink
Minor pokes.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddTheSane committed Oct 9, 2023
1 parent 897f8ca commit 87d7264
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Boxer/Rendering/BXFrameRenderingView.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,13 @@ typedef NS_ENUM(NSInteger, BXRenderingStyle) {


@optional
/// Called to indicate to the rendering view that a view animation will be/has been
/// Called to indicate to the rendering view that a view animation will be
/// applied to it. This permits the view to adjust its rendering context to suit
/// the animation.
- (void) viewAnimationWillStart: (NSViewAnimation *)animation;
/// Called to indicate to the rendering view that a view animation has been
/// applied to it. This permits the view to adjust its rendering context to suit
/// the animation.
- (void) viewAnimationDidEnd: (NSViewAnimation *)animation;

/// Called whenever the window changes color space or scaling factor.
Expand Down
4 changes: 2 additions & 2 deletions Boxer/Rendering/BXVideoFrame.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ extern const CGFloat BX4by3AspectRatio;

/// Read-only/mutable pointers to the frame's data.
@property (readonly) NSMutableData *frameData;
@property (readonly) const void *bytes;
@property (readonly) void *mutableBytes;
@property (readonly) const void *bytes NS_RETURNS_INNER_POINTER;
@property (readonly) void *mutableBytes NS_RETURNS_INNER_POINTER;

/// The number of ranges of dirty lines. Incremented by setNeedsDisplayInRegion:
/// and reset to 0 by clearDirtyRegions. See the dirty region functions below.
Expand Down

0 comments on commit 87d7264

Please sign in to comment.