commit | ea5d8af9fb20096f350d2f313935ba37a592c160 | [log] [tgz] |
---|---|---|
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Nov 02 17:38:28 2012 +0000 |
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Nov 02 17:38:28 2012 +0000 |
tree | f8f05a9802009a4cc71af88bd6e43f9150a6976a | |
parent | ee5ea6b8e0ba8a6cd4581c941cc732864c7ad00c [diff] [blame] |
Fix for 2 parallel gpu rendering issues (bigbitmaprect & image-surface) https://codereview.appspot.com/6816079/ git-svn-id: http://skia.googlecode.com/svn/trunk@6266 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/SkGpuDevice.cpp b/src/gpu/SkGpuDevice.cpp index 4a4259e..fd30c54 100644 --- a/src/gpu/SkGpuDevice.cpp +++ b/src/gpu/SkGpuDevice.cpp
@@ -616,7 +616,7 @@ /////////////////////////////////////////////////////////////////////////////// void SkGpuDevice::clear(SkColor color) { - fContext->clear(NULL, color, fRenderTarget); + fContext->clear(NULL, SkColor2GrColor(color), fRenderTarget); fNeedClear = false; }