From c1720d40360e9efc0f91b4a43c8ff694dd3af2a8 Mon Sep 17 00:00:00 2001 From: Jim Van Verth Date: Mon, 9 Oct 2017 10:16:01 -0400 Subject: Get HelloWorld example running again Change-Id: I5956f7c52d265d9f52dd061f1555c54ad092fe76 Reviewed-on: https://skia-review.googlesource.com/57101 Commit-Queue: Jim Van Verth Reviewed-by: Brian Osman --- example/HelloWorld.cpp | 17 ++++------------- example/HelloWorld.h | 4 ++-- 2 files changed, 6 insertions(+), 15 deletions(-) (limited to 'example') diff --git a/example/HelloWorld.cpp b/example/HelloWorld.cpp index 2375e0016f..83bc4ecf44 100644 --- a/example/HelloWorld.cpp +++ b/example/HelloWorld.cpp @@ -39,14 +39,6 @@ HelloWorldWindow::~HelloWorldWindow() { } void HelloWorldWindow::tearDownBackend() { - SkSafeUnref(fContext); - fContext = NULL; - - SkSafeUnref(fInterface); - fInterface = NULL; - - fGpuSurface = nullptr; - INHERITED::release(); } @@ -67,10 +59,10 @@ bool HelloWorldWindow::setUpBackend() { return false; } - fInterface = GrGLCreateNativeInterface(); + fInterface.reset(GrGLCreateNativeInterface()); SkASSERT(NULL != fInterface); - fContext = GrContext::MakeGL(fInterface).release(); + fContext = GrContext::MakeGL(fInterface.get()); SkASSERT(NULL != fContext); this->setUpGpuBackedSurface(); @@ -78,7 +70,7 @@ bool HelloWorldWindow::setUpBackend() { } void HelloWorldWindow::setUpGpuBackedSurface() { - fGpuSurface = this->makeGpuBackedSurface(fAttachmentInfo, fInterface, fContext); + fGpuSurface = this->makeGpuBackedSurface(fAttachmentInfo, fInterface.get(), fContext.get()); } void HelloWorldWindow::drawContents(SkCanvas* canvas) { @@ -114,8 +106,7 @@ void HelloWorldWindow::drawContents(SkCanvas* canvas) { // Draw a message with a nice black paint. paint.setFlags( SkPaint::kAntiAlias_Flag | - SkPaint::kSubpixelText_Flag | // ... avoid waggly text when rotating. - SkPaint::kUnderlineText_Flag); + SkPaint::kSubpixelText_Flag); // ... avoid waggly text when rotating. paint.setColor(SK_ColorBLACK); paint.setTextSize(20); diff --git a/example/HelloWorld.h b/example/HelloWorld.h index d3fc7cfb16..05d9b81e82 100644 --- a/example/HelloWorld.h +++ b/example/HelloWorld.h @@ -62,10 +62,10 @@ private: // support framework DeviceType fType; sk_sp fRasterSurface; - GrContext* fContext; + sk_sp fContext; sk_sp fGpuSurface; AttachmentInfo fAttachmentInfo; - const GrGLInterface* fInterface; + sk_sp fInterface; typedef SkOSWindow INHERITED; }; -- cgit v1.2.3