[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
hyatt
hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:47:21 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit f399a1a33d7b6ee6e1e45804d4e83fef9760cb96
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Jul 14 19:17:51 2003 +0000
Roll this change out. It was a bad change that I only made
because I was using the opacity APIs wrong.
Reviewed by (nobody, just a straight backout of a previous checkin)
* WebCoreSupport.subproj/WebImageRenderer.m:
(-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4648 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 903b304..44617db 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-07-14 Dave Hyatt <hyatt at apple.com>
+
+ Roll this change out. It was a bad change that I only made
+ because I was using the opacity APIs wrong.
+
+ Reviewed by (nobody, just a straight backout of a previous checkin)
+
+ * WebCoreSupport.subproj/WebImageRenderer.m:
+ (-[WebImageRenderer drawClippedToValidInRect:fromRect:]):
+
2003-07-13 Darin Adler <darin at apple.com>
* WebKit.pbproj/project.pbxproj: Add command to prevent build from failing if symlink
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index 79e94a6..f1f64d0 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -10,8 +10,6 @@
#import <WebCore/WebCoreImageRenderer.h>
#import <WebKit/WebAssertions.h>
-#import <CoreGraphics/CGContextGState.h>
-
extern NSString *NSImageLoopCount;
#define MINIMUM_DURATION (1.0/30.0)
@@ -279,8 +277,7 @@ static NSMutableSet *activeImageRenderers;
}
// This is the operation that handles transparent portions of the source image correctly.
- CGContextRef context = (CGContextRef)([[NSGraphicsContext currentContext] graphicsPort]);
- [self drawInRect:ir fromRect:fr operation:NSCompositeSourceOver fraction:CGContextGetAlpha(context)];
+ [self drawInRect:ir fromRect:fr operation:NSCompositeSourceOver fraction: 1.0];
}
- (void)nextFrame:(id)context
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list