diff options
| author | Neil <nyamatongwe@gmail.com> | 2021-03-25 10:57:35 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2021-03-25 10:57:35 +1100 |
| commit | 2f0011955fe7d3ac0b80247abc88ee0461104eb6 (patch) | |
| tree | 803c13dc6a4cfac883ab488c975149428adebf29 /cocoa/PlatCocoa.mm | |
| parent | fa10779da55ff13c95a0cd39bffdf57dcdfc9cc5 (diff) | |
| download | scintilla-mirror-2f0011955fe7d3ac0b80247abc88ee0461104eb6.tar.gz | |
Add FillRectangleAligned to align rectangle to pixel grid on x-axis before
filling it to avoid partially drawn pixels on left and right edges.
Diffstat (limited to 'cocoa/PlatCocoa.mm')
| -rw-r--r-- | cocoa/PlatCocoa.mm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 275587288..ef8a3f518 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -811,6 +811,12 @@ void SurfaceImpl::FillRectangle(PRectangle rc, Fill fill) { //-------------------------------------------------------------------------------------------------- +void SurfaceImpl::FillRectangleAligned(PRectangle rc, Fill fill) { + FillRectangle(PixelAlign(rc, PixelDivisions()), fill); +} + +//-------------------------------------------------------------------------------------------------- + static void drawImageRefCallback(void *info, CGContextRef gc) { CGImageRef pattern = static_cast<CGImageRef>(info); CGContextDrawImage(gc, CGRectMake(0, 0, CGImageGetWidth(pattern), CGImageGetHeight(pattern)), pattern); |
