git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Reviewed by Oliver.
[WebKit-https.git]
/
WebCore
/
platform
/
graphics
/
mac
/
MoviePrivateQTKit.mm
diff --git
a/WebCore/platform/graphics/mac/MoviePrivateQTKit.mm
b/WebCore/platform/graphics/mac/MoviePrivateQTKit.mm
index 5f5616718aa7c6637ada99d993081bcf213f43ed..09f1f32cdc4c7d1744f1e4b2d9d96848f4133f21 100644
(file)
--- a/
WebCore/platform/graphics/mac/MoviePrivateQTKit.mm
+++ b/
WebCore/platform/graphics/mac/MoviePrivateQTKit.mm
@@
-144,6
+144,9
@@
void MoviePrivate::createQTMovieView()
[m_qtMovieView.get() setMovie:m_qtMovie.get()];
[m_qtMovieView.get() setControllerVisible:NO];
[m_qtMovieView.get() setPreservesAspectRatio:YES];
[m_qtMovieView.get() setMovie:m_qtMovie.get()];
[m_qtMovieView.get() setControllerVisible:NO];
[m_qtMovieView.get() setPreservesAspectRatio:YES];
+ // the area not covered by video should be transparent
+ NSColor* transparent = [NSColor colorWithDeviceRed: 0.0f green: 0.0f blue: 0.0f alpha: 0.0f];
+ [m_qtMovieView.get() setFillColor:transparent];
wkQTMovieViewSetDrawSynchronously(m_qtMovieView.get(), YES);
}
wkQTMovieViewSetDrawSynchronously(m_qtMovieView.get(), YES);
}