mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 13:35:07 +00:00
parent
d0e8d06d95
commit
ba761ab06e
1 changed files with 8 additions and 0 deletions
|
@ -125,6 +125,14 @@ static void destroyContextNSGL(_GLFWwindow* window)
|
|||
{
|
||||
@autoreleasepool {
|
||||
|
||||
if (window->context.nsgl.displayLink)
|
||||
{
|
||||
if (CVDisplayLinkIsRunning(window->context.nsgl.displayLink))
|
||||
CVDisplayLinkStop(window->context.nsgl.displayLink);
|
||||
|
||||
CVDisplayLinkRelease(window->context.nsgl.displayLink);
|
||||
}
|
||||
|
||||
[window->context.nsgl.pixelFormat release];
|
||||
window->context.nsgl.pixelFormat = nil;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue