Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: debugger/QT/SkGLWidget.cpp

Issue 1205933002: Fix debugger compilation (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: debugger/QT/SkGLWidget.cpp
diff --git a/debugger/QT/SkGLWidget.cpp b/debugger/QT/SkGLWidget.cpp
index cd9350a394e8774bf6ed3629846114066c678cd2..92c7b421abe5af1dbfbd183f607b1dfee598c888 100644
--- a/debugger/QT/SkGLWidget.cpp
+++ b/debugger/QT/SkGLWidget.cpp
@@ -62,8 +62,9 @@ void SkGLWidget::createRenderTarget() {
desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
SkAutoTUnref<GrRenderTarget> curRenderTarget(
fCurContext->textureProvider()->wrapBackendRenderTarget(desc));
- SkSurfaceProps props(SkSurfaceProps::kLegacyFontHost_InitType);
- fGpuDevice.reset(SkGpuDevice::Create(curRenderTarget, &props));
+ SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
+ fGpuDevice.reset(SkGpuDevice::Create(curRenderTarget, &props,
+ SkGpuDevice::kUninit_InitContents));
fCanvas.reset(new SkCanvas(fGpuDevice));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698