mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-10 21:28:32 +09:00
[Fix] (MG_Impl): preserve macOS surface during resize
This commit is contained in:
@@ -256,6 +256,18 @@ namespace MobileGL::MG_Impl::CGLImpl {
|
||||
object.HasDrawable = true;
|
||||
return GetCurrentContext() == ctx ? MakeCurrentLocked(ctx, object) : kCGLNoError;
|
||||
}
|
||||
|
||||
CGLError ResizeSurfaceLocked(ContextObject& object) {
|
||||
if (object.Surface == EGL_NO_SURFACE) {
|
||||
return kCGLBadDrawable;
|
||||
}
|
||||
return EGLImpl::ResizePlatformWindowSurface(
|
||||
object.Display, object.Surface,
|
||||
std::max<GLint>(object.SurfaceBackingSize[0], 1),
|
||||
std::max<GLint>(object.SurfaceBackingSize[1], 1))
|
||||
? kCGLNoError
|
||||
: kCGLBadDrawable;
|
||||
}
|
||||
} // namespace
|
||||
|
||||
CGLError ChoosePixelFormat(const CGLPixelFormatAttribute* attribs, CGLPixelFormatObj* pix, GLint* npix) {
|
||||
@@ -492,8 +504,8 @@ namespace MobileGL::MG_Impl::CGLImpl {
|
||||
}
|
||||
object->SurfaceBackingSize[0] = width;
|
||||
object->SurfaceBackingSize[1] = height;
|
||||
if (object->MetalLayer) {
|
||||
return RecreateSurfaceLocked(ctx, *object);
|
||||
if (object->MetalLayer && object->Surface != EGL_NO_SURFACE) {
|
||||
return ResizeSurfaceLocked(*object);
|
||||
}
|
||||
return kCGLNoError;
|
||||
}
|
||||
@@ -653,6 +665,11 @@ namespace MobileGL::MG_Impl::CGLImpl {
|
||||
object->HasDrawable = true;
|
||||
return kCGLNoError;
|
||||
}
|
||||
if (object->Surface != EGL_NO_SURFACE && object->MetalLayer == metalLayer) {
|
||||
object->View = nsView;
|
||||
object->HasDrawable = true;
|
||||
return ResizeSurfaceLocked(*object);
|
||||
}
|
||||
if (object->Surface != EGL_NO_SURFACE) {
|
||||
EGLImpl::DestroySurface(object->Display, object->Surface);
|
||||
object->Surface = EGL_NO_SURFACE;
|
||||
|
||||
Reference in New Issue
Block a user