diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-04-03 18:04:51 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-04-03 18:04:51 +0000 |
commit | 3c4d032aeb2831a64fd6eff570667d590e3ed209 (patch) | |
tree | 65bc1d75e4ee070b516870b0be319cfa63aee9c2 /include/views | |
parent | 5f017a4ab001baf1b9f433a9b02c6e01f93a97a1 (diff) |
Revert 3857 (which was committed from wrong tree)
git-svn-id: http://skia.googlecode.com/svn/trunk@3588 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/views')
-rw-r--r-- | include/views/SkOSWindow_Mac.h | 7 | ||||
-rw-r--r-- | include/views/SkOSWindow_Unix.h | 2 | ||||
-rw-r--r-- | include/views/SkOSWindow_Win.h | 6 |
3 files changed, 8 insertions, 7 deletions
diff --git a/include/views/SkOSWindow_Mac.h b/include/views/SkOSWindow_Mac.h index e3bcea9081..01fa29f334 100644 --- a/include/views/SkOSWindow_Mac.h +++ b/include/views/SkOSWindow_Mac.h @@ -16,18 +16,19 @@ public: SkOSWindow(void* hwnd); ~SkOSWindow(); void* getHWND() const { return fHWND; } - + virtual bool onDispatchClick(int x, int y, Click::State state, void* owner); + enum SkBackEndTypes { kNone_BackEndType, kNativeGL_BackEndType, }; void detach(); - bool attach(SkBackEndTypes attachType, int msaaSampleCount); + bool attach(SkBackEndTypes attachType); void present(); - + protected: // overrides from SkEventSink virtual bool onEvent(const SkEvent& evt); diff --git a/include/views/SkOSWindow_Unix.h b/include/views/SkOSWindow_Unix.h index e9755ab2b4..40059bf8d4 100644 --- a/include/views/SkOSWindow_Unix.h +++ b/include/views/SkOSWindow_Unix.h @@ -40,7 +40,7 @@ public: kNativeGL_BackEndType, }; - bool attach(SkBackEndTypes attachType, int msaaSampleCount); + bool attach(SkBackEndTypes attachType); void detach(); void present(); diff --git a/include/views/SkOSWindow_Win.h b/include/views/SkOSWindow_Win.h index 4223645614..2663c8c75d 100644 --- a/include/views/SkOSWindow_Win.h +++ b/include/views/SkOSWindow_Win.h @@ -36,7 +36,7 @@ public: kD3D9_BackEndType }; - bool attach(SkBackEndTypes attachType, int msaaSampleCount); + bool attach(SkBackEndTypes attachType); void detach(); void present(); @@ -78,13 +78,13 @@ private: SkBackEndTypes fAttached; - bool attachGL(int msaaSampleCount); + bool attachGL(); void detachGL(); void presentGL(); #if SK_ANGLE bool attachANGLE(); - void detachANGLE(int msaaSampleCount); + void detachANGLE(); void presentANGLE(); #endif |