mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
Bug 886999 - Avoid touching the GL context from the main thread on mac, and lock the context when touching it from other threads. r=mstange
This commit is contained in:
parent
51880b9ac4
commit
741531f1fc
@ -344,6 +344,7 @@ LayerManagerComposite::Render()
|
||||
}
|
||||
|
||||
if (actualBounds.IsEmpty()) {
|
||||
mCompositor->GetWidget()->PostRender(this);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -369,6 +370,8 @@ LayerManagerComposite::Render()
|
||||
PROFILER_LABEL("LayerManagerComposite", "EndFrame");
|
||||
mCompositor->EndFrame();
|
||||
}
|
||||
|
||||
mCompositor->GetWidget()->PostRender(this);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -334,6 +334,7 @@ typedef NSInteger NSEventGestureAxis;
|
||||
|
||||
- (void)setGLContext:(NSOpenGLContext *)aGLContext;
|
||||
- (void)preRender:(NSOpenGLContext *)aGLContext;
|
||||
- (void)postRender:(NSOpenGLContext *)aGLContext;
|
||||
|
||||
- (BOOL)isCoveringTitlebar;
|
||||
|
||||
@ -537,6 +538,7 @@ public:
|
||||
virtual void PrepareWindowEffects() MOZ_OVERRIDE;
|
||||
virtual void CleanupWindowEffects() MOZ_OVERRIDE;
|
||||
virtual void PreRender(LayerManager* aManager) MOZ_OVERRIDE;
|
||||
virtual void PostRender(LayerManager* aManager) MOZ_OVERRIDE;
|
||||
virtual void DrawWindowOverlay(LayerManager* aManager, nsIntRect aRect) MOZ_OVERRIDE;
|
||||
|
||||
virtual void UpdateThemeGeometries(const nsTArray<ThemeGeometry>& aThemeGeometries);
|
||||
|
@ -2043,6 +2043,17 @@ nsChildView::PreRender(LayerManager* aManager)
|
||||
[(ChildView*)mView preRender:glContext];
|
||||
}
|
||||
|
||||
void
|
||||
nsChildView::PostRender(LayerManager* aManager)
|
||||
{
|
||||
nsAutoPtr<GLManager> manager(GLManager::CreateGLManager(aManager));
|
||||
if (!manager) {
|
||||
return;
|
||||
}
|
||||
NSOpenGLContext *glContext = (NSOpenGLContext *)manager->gl()->GetNativeData(GLContext::NativeGLContext);
|
||||
[(ChildView*)mView postRender:glContext];
|
||||
}
|
||||
|
||||
void
|
||||
nsChildView::DrawWindowOverlay(LayerManager* aManager, nsIntRect aRect)
|
||||
{
|
||||
@ -2885,6 +2896,17 @@ NSEvent* gLastDragMouseDownEvent = nil;
|
||||
[aGLContext setView:self];
|
||||
[aGLContext update];
|
||||
|
||||
CGLLockContext((CGLContextObj)[aGLContext CGLContextObj]);
|
||||
|
||||
NS_OBJC_END_TRY_ABORT_BLOCK;
|
||||
}
|
||||
|
||||
-(void)postRender:(NSOpenGLContext *)aGLContext
|
||||
{
|
||||
NS_OBJC_BEGIN_TRY_ABORT_BLOCK;
|
||||
|
||||
CGLUnlockContext((CGLContextObj)[aGLContext CGLContextObj]);
|
||||
|
||||
NS_OBJC_END_TRY_ABORT_BLOCK;
|
||||
}
|
||||
|
||||
@ -3223,7 +3245,7 @@ NSEvent* gLastDragMouseDownEvent = nil;
|
||||
|
||||
[super lockFocus];
|
||||
|
||||
if (mGLContext) {
|
||||
if (mGLContext && !mUsingOMTCompositor) {
|
||||
if ([mGLContext view] != self) {
|
||||
[mGLContext setView:self];
|
||||
}
|
||||
|
@ -1216,6 +1216,7 @@ class nsIWidget : public nsISupports {
|
||||
virtual void CleanupWindowEffects() = 0;
|
||||
|
||||
virtual void PreRender(LayerManager* aManager) = 0;
|
||||
virtual void PostRender(LayerManager* aManager) = 0;
|
||||
|
||||
/**
|
||||
* Called before the LayerManager draws the layer tree.
|
||||
|
@ -137,6 +137,7 @@ public:
|
||||
virtual void PrepareWindowEffects() {}
|
||||
virtual void CleanupWindowEffects() {}
|
||||
virtual void PreRender(LayerManager* aManager) {}
|
||||
virtual void PostRender(LayerManager* aManager) {}
|
||||
virtual void DrawWindowUnderlay(LayerManager* aManager, nsIntRect aRect) {}
|
||||
virtual void DrawWindowOverlay(LayerManager* aManager, nsIntRect aRect) {}
|
||||
virtual mozilla::TemporaryRef<mozilla::gfx::DrawTarget> StartRemoteDrawing();
|
||||
|
Loading…
x
Reference in New Issue
Block a user