OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkOSWindow_Android.h" | 8 #include "SkOSWindow_Android.h" |
9 | 9 |
10 #include <GLES/gl.h> | 10 #include <GLES/gl.h> |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 eglSwapInterval(fWindow.fDisplay, swapInterval); | 181 eglSwapInterval(fWindow.fDisplay, swapInterval); |
182 } | 182 } |
183 } | 183 } |
184 | 184 |
185 void SkOSWindow::onSetTitle(const char title[]) { | 185 void SkOSWindow::onSetTitle(const char title[]) { |
186 } | 186 } |
187 | 187 |
188 void SkOSWindow::onHandleInval(const SkIRect& rect) { | 188 void SkOSWindow::onHandleInval(const SkIRect& rect) { |
189 } | 189 } |
190 | 190 |
191 void SkOSWindow::onPDFSaved(const char title[], const char desc[], const char pa
th[]) { | |
192 } | |
193 | |
194 /////////////////////////////////////////// | 191 /////////////////////////////////////////// |
195 /////////////// SkEvent impl ////////////// | 192 /////////////// SkEvent impl ////////////// |
196 /////////////////////////////////////////// | 193 /////////////////////////////////////////// |
197 | 194 |
198 void SkEvent::SignalQueueTimer(SkMSec ms) { | 195 void SkEvent::SignalQueueTimer(SkMSec ms) { |
199 } | 196 } |
200 | 197 |
201 void SkEvent::SignalNonEmptyQueue() { | 198 void SkEvent::SignalNonEmptyQueue() { |
202 } | 199 } |
OLD | NEW |