OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SampleApp.h" | 8 #include "SampleApp.h" |
9 | 9 |
10 #include "OverView.h" | 10 #include "OverView.h" |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 fCurContext->flush(); | 290 fCurContext->flush(); |
291 | 291 |
292 if (!IsGpuDeviceType(dType)) { | 292 if (!IsGpuDeviceType(dType)) { |
293 // need to send the raster bits to the (gpu) window | 293 // need to send the raster bits to the (gpu) window |
294 fCurContext->setRenderTarget(fCurRenderTarget); | 294 fCurContext->setRenderTarget(fCurRenderTarget); |
295 const SkBitmap& bm = win->getBitmap(); | 295 const SkBitmap& bm = win->getBitmap(); |
296 fCurRenderTarget->writePixels(0, 0, bm.width(), bm.height(), | 296 fCurRenderTarget->writePixels(0, 0, bm.width(), bm.height(), |
297 SkImageInfo2GrPixelConfig(bm.colorT
ype(), | 297 SkImageInfo2GrPixelConfig(bm.colorT
ype(), |
298 bm.alphaT
ype()), | 298 bm.alphaT
ype()), |
299 bm.getPixels(), | 299 bm.getPixels(), |
300 bm.rowBytes()); | 300 bm.rowBytes(), |
| 301 GrContext::kFlushWrites_PixelOp); |
301 } | 302 } |
302 } | 303 } |
303 #endif | 304 #endif |
304 | 305 |
305 win->present(); | 306 win->present(); |
306 } | 307 } |
307 | 308 |
308 virtual void windowSizeChanged(SampleWindow* win) { | 309 virtual void windowSizeChanged(SampleWindow* win) { |
309 #if SK_SUPPORT_GPU | 310 #if SK_SUPPORT_GPU |
310 if (fCurContext) { | 311 if (fCurContext) { |
(...skipping 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2399 setenv("ANDROID_ROOT", "/android/device/data", 0); | 2400 setenv("ANDROID_ROOT", "/android/device/data", 0); |
2400 #endif | 2401 #endif |
2401 SkGraphics::Init(); | 2402 SkGraphics::Init(); |
2402 SkEvent::Init(); | 2403 SkEvent::Init(); |
2403 } | 2404 } |
2404 | 2405 |
2405 void application_term() { | 2406 void application_term() { |
2406 SkEvent::Term(); | 2407 SkEvent::Term(); |
2407 SkGraphics::Term(); | 2408 SkGraphics::Term(); |
2408 } | 2409 } |
OLD | NEW |