mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-22 17:32:05 +00:00
- made Vulkan Cocoa view opaque
It is recommended to make content view opaque like NSOpenGLView I didn't notice any difference in performance though
This commit is contained in:
parent
422f3fdd94
commit
0e3da97bd9
1 changed files with 5 additions and 0 deletions
|
@ -251,6 +251,11 @@ namespace
|
||||||
return [self.class.layerClass layer];
|
return [self.class.layerClass layer];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-(BOOL) isOpaque
|
||||||
|
{
|
||||||
|
return YES;
|
||||||
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue