| 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 "SkBitmapDevice.h" | 8 #include "SkBitmapDevice.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 #if SK_SUPPORT_GPU | 312 #if SK_SUPPORT_GPU |
| 313 case kGpu_BottomLeft_DevType: | 313 case kGpu_BottomLeft_DevType: |
| 314 case kGpu_TopLeft_DevType: | 314 case kGpu_TopLeft_DevType: |
| 315 GrSurfaceDesc desc; | 315 GrSurfaceDesc desc; |
| 316 desc.fFlags = kRenderTarget_GrSurfaceFlag; | 316 desc.fFlags = kRenderTarget_GrSurfaceFlag; |
| 317 desc.fWidth = DEV_W; | 317 desc.fWidth = DEV_W; |
| 318 desc.fHeight = DEV_H; | 318 desc.fHeight = DEV_H; |
| 319 desc.fConfig = kSkia8888_GrPixelConfig; | 319 desc.fConfig = kSkia8888_GrPixelConfig; |
| 320 desc.fOrigin = kGpu_TopLeft_DevType == c.fDevType ? | 320 desc.fOrigin = kGpu_TopLeft_DevType == c.fDevType ? |
| 321 kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin; | 321 kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin; |
| 322 SkAutoTUnref<GrTexture> texture(grCtx->createTexture(desc, false)); | 322 SkAutoTUnref<GrTexture> texture(grCtx->textureProvider()->createText
ure(desc, false)); |
| 323 return SkSurface::NewRenderTargetDirect(texture->asRenderTarget()); | 323 return SkSurface::NewRenderTargetDirect(texture->asRenderTarget()); |
| 324 #endif | 324 #endif |
| 325 } | 325 } |
| 326 return NULL; | 326 return NULL; |
| 327 } | 327 } |
| 328 | 328 |
| 329 static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, in
t h, int tightRB) { | 329 static bool setup_bitmap(SkBitmap* bm, SkColorType ct, SkAlphaType at, int w, in
t h, int tightRB) { |
| 330 size_t rowBytes = tightRB ? 0 : 4 * w + 60; | 330 size_t rowBytes = tightRB ? 0 : 4 * w + 60; |
| 331 SkImageInfo info = SkImageInfo::Make(w, h, ct, at); | 331 SkImageInfo info = SkImageInfo::Make(w, h, ct, at); |
| 332 if (!allocRowBytes(bm, info, rowBytes)) { | 332 if (!allocRowBytes(bm, info, rowBytes)) { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.f
Top, | 470 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.f
Top, |
| 471 bmp.width(), bmp.h
eight()); | 471 bmp.width(), bmp.h
eight()); |
| 472 bool intersects = SkIRect::Intersects(canvasRect, writeR
ect) ; | 472 bool intersects = SkIRect::Intersects(canvasRect, writeR
ect) ; |
| 473 REPORTER_ASSERT(reporter, intersects == (idBefore != idA
fter)); | 473 REPORTER_ASSERT(reporter, intersects == (idBefore != idA
fter)); |
| 474 } | 474 } |
| 475 } | 475 } |
| 476 } | 476 } |
| 477 } | 477 } |
| 478 } | 478 } |
| 479 } | 479 } |
| OLD | NEW |