mirror of https://github.com/encounter/SDL.git
macOS: Use the proper type (NSSize instead of CGSize) for the bounds of metal views.
This commit is contained in:
parent
2937317f12
commit
dd29abb478
|
@ -77,8 +77,8 @@
|
|||
- (void)updateDrawableSize
|
||||
{
|
||||
CAMetalLayer *metalLayer = (CAMetalLayer *)self.layer;
|
||||
CGSize size = self.bounds.size;
|
||||
CGSize backingSize = size;
|
||||
NSSize size = self.bounds.size;
|
||||
NSSize backingSize = size;
|
||||
|
||||
if (self.highDPI) {
|
||||
/* Note: NSHighResolutionCapable must be set to true in the app's
|
||||
|
@ -88,7 +88,7 @@
|
|||
}
|
||||
|
||||
metalLayer.contentsScale = backingSize.height / size.height;
|
||||
metalLayer.drawableSize = backingSize;
|
||||
metalLayer.drawableSize = NSSizeToCGSize(backingSize);
|
||||
}
|
||||
|
||||
/* Set the size of the metal drawables when the view is resized. */
|
||||
|
|
Loading…
Reference in New Issue