summaryrefslogtreecommitdiffstats
path: root/views
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 15:30:55 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-15 15:30:55 +0000
commit3eaf0ecd7a4882482d6234f7a115d1b019c13339 (patch)
tree327b0b0078ed2bdfa101986fb3ae51edc1c87275 /views
parent3d428737173006823333a2635df6c4c15ad739a7 (diff)
downloadchromium_src-3eaf0ecd7a4882482d6234f7a115d1b019c13339.zip
chromium_src-3eaf0ecd7a4882482d6234f7a115d1b019c13339.tar.gz
chromium_src-3eaf0ecd7a4882482d6234f7a115d1b019c13339.tar.bz2
Windows: Fix opacity of drag images.
BUG=XXX TEST=Go to google.com, drag logo around. Preview image should now look nice. Review URL: http://codereview.chromium.org/2963009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52484 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r--views/drag_utils_win.cc27
1 files changed, 11 insertions, 16 deletions
diff --git a/views/drag_utils_win.cc b/views/drag_utils_win.cc
index 84b4ba1..d21d37f 100644
--- a/views/drag_utils_win.cc
+++ b/views/drag_utils_win.cc
@@ -12,6 +12,7 @@
#include "app/os_exchange_data_provider_win.h"
#include "gfx/canvas_skia.h"
#include "gfx/gdi_util.h"
+#include "gfx/skbitmap_operations.h"
#include "third_party/skia/include/core/SkBitmap.h"
namespace drag_utils {
@@ -35,23 +36,18 @@ static void SetDragImageOnDataObject(HBITMAP hbitmap,
// Blit the contents of the canvas to a new HBITMAP. It is the caller's
// responsibility to release the |bits| buffer.
-static HBITMAP CreateBitmapFromCanvas(const gfx::CanvasSkia& canvas,
- int width,
- int height) {
+static HBITMAP CreateHBITMAPFromSkBitmap(const SkBitmap& sk_bitmap) {
HDC screen_dc = GetDC(NULL);
BITMAPINFOHEADER header;
- gfx::CreateBitmapHeader(width, height, &header);
+ gfx::CreateBitmapHeader(sk_bitmap.width(), sk_bitmap.height(), &header);
void* bits;
HBITMAP bitmap =
CreateDIBSection(screen_dc, reinterpret_cast<BITMAPINFO*>(&header),
DIB_RGB_COLORS, &bits, NULL, 0);
- HDC compatible_dc = CreateCompatibleDC(screen_dc);
- HGDIOBJ old_object = SelectObject(compatible_dc, bitmap);
- BitBlt(compatible_dc, 0, 0, width, height,
- canvas.getTopPlatformDevice().getBitmapDC(),
- 0, 0, SRCCOPY);
- SelectObject(compatible_dc, old_object);
- ReleaseDC(NULL, compatible_dc);
+ DCHECK(sk_bitmap.rowBytes() == sk_bitmap.width() * 4);
+ SkAutoLockPixels lock(sk_bitmap);
+ memcpy(
+ bits, sk_bitmap.getPixels(), sk_bitmap.height() * sk_bitmap.rowBytes());
ReleaseDC(NULL, screen_dc);
return bitmap;
}
@@ -60,13 +56,12 @@ void SetDragImageOnDataObject(const SkBitmap& sk_bitmap,
const gfx::Size& size,
const gfx::Point& cursor_offset,
OSExchangeData* data_object) {
- gfx::CanvasSkia canvas(sk_bitmap.width(), sk_bitmap.height(),
- /*is_opaque=*/false);
- canvas.DrawBitmapInt(sk_bitmap, 0, 0);
-
DCHECK(data_object && !size.IsEmpty());
+ // InitializeFromBitmap() doesn't expect an alpha channel and is confused
+ // by premultiplied colors, so unpremultiply the bitmap.
// SetDragImageOnDataObject(HBITMAP) takes ownership of the bitmap.
- HBITMAP bitmap = CreateBitmapFromCanvas(canvas, size.width(), size.height());
+ HBITMAP bitmap = CreateHBITMAPFromSkBitmap(
+ SkBitmapOperations::UnPreMultiply(sk_bitmap));
// Attach 'bitmap' to the data_object.
SetDragImageOnDataObject(bitmap, size, cursor_offset,