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

Unified Diff: experimental/SkiaExamples/BaseExample.cpp

Issue 16337012: Smallest possible desktop application that uses Skia to render stuff. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix OSX build. Created 7 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 | « experimental/SkiaExamples/BaseExample.h ('k') | experimental/SkiaExamples/HelloSkiaExample.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/SkiaExamples/BaseExample.cpp
diff --git a/experimental/SkiaExamples/BaseExample.cpp b/experimental/SkiaExamples/BaseExample.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..decce40949d7139e5f28865356ccc216a7deea17
--- /dev/null
+++ b/experimental/SkiaExamples/BaseExample.cpp
@@ -0,0 +1,135 @@
+/*
+ * Copyright 2013 Google Inc.
+ *
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ *
+ */
+
+#include "BaseExample.h"
+
+#include "gl/GrGLUtil.h"
+#include "gl/GrGLDefines.h"
+#include "gl/GrGLInterface.h"
+#include "SkApplication.h"
+#include "SkGpuDevice.h"
+#include "SkGraphics.h"
+
+void application_init() {
+ SkGraphics::Init();
+ SkEvent::Init();
+}
+
+void application_term() {
+ SkEvent::Term();
+ SkGraphics::Term();
+}
+
+BaseExample::BaseExample(void* hWnd, int argc, char** argv)
+ : INHERITED(hWnd) {}
+
+void BaseExample::tearDownBackend() {
+ if (kGPU_DeviceType == fType) {
+ SkSafeUnref(fContext);
+ fContext = NULL;
+
+ SkSafeUnref(fInterface);
+ fInterface = NULL;
+
+ SkSafeUnref(fRenderTarget);
+ fRenderTarget = NULL;
+
+ detach();
+ }
+}
+
+bool BaseExample::setupBackend(DeviceType type) {
+ fType = type;
+
+ this->setConfig(SkBitmap::kARGB_8888_Config);
+ this->setVisibleP(true);
+ this->setClipToBounds(false);
+
+ bool result = attach(kNativeGL_BackEndType, 0 /*msaa*/, &fAttachmentInfo);
+ if (false == result) {
+ SkDebugf("Not possible to create backend.\n");
+ detach();
+ return false;
+ }
+
+ fInterface = GrGLCreateNativeInterface();
+
+ SkASSERT(NULL != fInterface);
+
+ fContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)fInterface);
+ SkASSERT(NULL != fContext);
+
+ setupRenderTarget();
+
+ return true;
+}
+
+void BaseExample::setupRenderTarget() {
+ GrBackendRenderTargetDesc desc;
+ desc.fWidth = SkScalarRound(width());
+ desc.fHeight = SkScalarRound(height());
+ desc.fConfig = kSkia8888_GrPixelConfig;
+ desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
+ desc.fSampleCnt = fAttachmentInfo.fSampleCount;
+ desc.fStencilBits = fAttachmentInfo.fStencilBits;
+
+ GrGLint buffer;
+ GR_GL_GetIntegerv(fInterface, GR_GL_FRAMEBUFFER_BINDING, &buffer);
+ desc.fRenderTargetHandle = buffer;
+
+ fRenderTarget = fContext->wrapBackendRenderTarget(desc);
+
+ fContext->setRenderTarget(fRenderTarget);
+}
+
+SkCanvas* BaseExample::createCanvas() {
+ if (fType == kGPU_DeviceType) {
+ if (NULL != fContext && NULL != fRenderTarget) {
+ SkAutoTUnref<SkDevice> device(new SkGpuDevice(fContext, fRenderTarget));
+ return new SkCanvas(device);
+ }
+ tearDownBackend();
+ setupBackend(kRaster_DeviceType);
+ }
+ return INHERITED::createCanvas();
+}
+
+void BaseExample::draw(SkCanvas* canvas) {
+ if (fType == kGPU_DeviceType) {
+
+ SkASSERT(NULL != fContext);
+ fContext->flush();
+ }
+ if (fType == kRaster_DeviceType) {
+ // need to send the raster bits to the (gpu) window
+ fContext->setRenderTarget(fRenderTarget);
+ const SkBitmap& bm = getBitmap();
+ fRenderTarget->writePixels(0, 0, bm.width(), bm.height(),
+ kSkia8888_GrPixelConfig,
+ bm.getPixels(),
+ bm.rowBytes());
+ }
+ INHERITED::present();
+}
+
+void BaseExample::onSizeChange() {
+ setupRenderTarget();
+}
+
+#ifdef SK_BUILD_FOR_WIN
+void BaseExample::onHandleInval(const SkIRect& rect) {
+ RECT winRect;
+ winRect.top = rect.top();
+ winRect.bottom = rect.bottom();
+ winRect.right = rect.right();
+ winRect.left = rect.left();
+ InvalidateRect((HWND)this->getHWND(), &winRect, false);
+}
+#endif
+
« no previous file with comments | « experimental/SkiaExamples/BaseExample.h ('k') | experimental/SkiaExamples/HelloSkiaExample.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698