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( | 322 SkAutoTUnref<GrTexture> texture(grCtx->createTexture(desc, false)); |
323 grCtx->refScratchTexture(desc, GrContext::kExact_ScratchTexMatch
)); | |
324 return SkSurface::NewRenderTargetDirect(texture->asRenderTarget()); | 323 return SkSurface::NewRenderTargetDirect(texture->asRenderTarget()); |
325 #endif | 324 #endif |
326 } | 325 } |
327 return NULL; | 326 return NULL; |
328 } | 327 } |
329 | 328 |
330 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) { |
331 size_t rowBytes = tightRB ? 0 : 4 * w + 60; | 330 size_t rowBytes = tightRB ? 0 : 4 * w + 60; |
332 SkImageInfo info = SkImageInfo::Make(w, h, ct, at); | 331 SkImageInfo info = SkImageInfo::Make(w, h, ct, at); |
333 if (!allocRowBytes(bm, info, rowBytes)) { | 332 if (!allocRowBytes(bm, info, rowBytes)) { |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.f
Top, | 470 SkIRect writeRect = SkIRect::MakeXYWH(rect.fLeft, rect.f
Top, |
472 bmp.width(), bmp.h
eight()); | 471 bmp.width(), bmp.h
eight()); |
473 bool intersects = SkIRect::Intersects(canvasRect, writeR
ect) ; | 472 bool intersects = SkIRect::Intersects(canvasRect, writeR
ect) ; |
474 REPORTER_ASSERT(reporter, intersects == (idBefore != idA
fter)); | 473 REPORTER_ASSERT(reporter, intersects == (idBefore != idA
fter)); |
475 } | 474 } |
476 } | 475 } |
477 } | 476 } |
478 } | 477 } |
479 } | 478 } |
480 } | 479 } |
OLD | NEW |