939560b87a
BUG=skia: R=robertphillips@google.com Author: jcgregorio@google.com Review URL: https://codereview.chromium.org/148523019 git-svn-id: http://skia.googlecode.com/svn/trunk@13609 2bbb7eff-a529-9590-31e7-b0007b416f81
54 lines
1.0 KiB
C++
54 lines
1.0 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
*/
|
|
|
|
#ifndef SkV8Example_DEFINED
|
|
#define SkV8Example_DEFINED
|
|
|
|
#include "SkWindow.h"
|
|
|
|
class GrContext;
|
|
class GrGLInterface;
|
|
class GrRenderTarget;
|
|
class SkSurface;
|
|
|
|
class JsContext;
|
|
|
|
class SkV8ExampleWindow : public SkOSWindow {
|
|
public:
|
|
SkV8ExampleWindow(void* hwnd, JsContext* canvas);
|
|
virtual ~SkV8ExampleWindow();
|
|
|
|
protected:
|
|
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE;
|
|
virtual void onSizeChange() SK_OVERRIDE;
|
|
|
|
#if SK_SUPPORT_GPU
|
|
virtual SkCanvas* createCanvas() SK_OVERRIDE;
|
|
#endif
|
|
|
|
#ifdef SK_BUILD_FOR_WIN
|
|
virtual void onHandleInval(const SkIRect&) SK_OVERRIDE;
|
|
#endif
|
|
|
|
void windowSizeChanged();
|
|
|
|
private:
|
|
typedef SkOSWindow INHERITED;
|
|
JsContext* fJsContext;
|
|
|
|
#if SK_SUPPORT_GPU
|
|
GrContext* fCurContext;
|
|
const GrGLInterface* fCurIntf;
|
|
GrRenderTarget* fCurRenderTarget;
|
|
SkSurface* fCurSurface;
|
|
#endif
|
|
};
|
|
|
|
#endif
|