-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf4ee3b
commit 7790da6
Showing
9 changed files
with
91 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// CGContextHidden.m | ||
// CodeEditTextViewObjC | ||
// | ||
// Created by Khan Winter on 2/12/24. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
#import "CGContextHidden.h" | ||
|
||
extern void CGContextSetFontSmoothingStyle(CGContextRef, int); | ||
|
||
void ContextSetHiddenSmoothingStyle(CGContextRef context, int style) { | ||
CGContextSetFontSmoothingStyle(context, style); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// CGContextHidden.h | ||
// CodeEditTextViewObjC | ||
// | ||
// Created by Khan Winter on 2/12/24. | ||
// | ||
|
||
#ifndef CGContextHidden_h | ||
#define CGContextHidden_h | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
void ContextSetHiddenSmoothingStyle(CGContextRef context, int style); | ||
|
||
#endif /* CGContextHidden_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module CodeEditTextViewObjC { | ||
header "CGContextHidden.h" | ||
} |