OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "SkBitmapCache.h" | 8 #include "SkBitmapCache.h" |
9 #include "SkImage_Gpu.h" | 9 #include "SkImage_Gpu.h" |
10 #include "GrCaps.h" | 10 #include "GrCaps.h" |
11 #include "GrContext.h" | 11 #include "GrContext.h" |
12 #include "GrDrawContext.h" | 12 #include "GrDrawContext.h" |
13 #include "GrTextureMaker.h" | 13 #include "GrTextureMaker.h" |
14 #include "effects/GrYUVtoRGBEffect.h" | 14 #include "effects/GrYUVtoRGBEffect.h" |
15 #include "SkCanvas.h" | 15 #include "SkCanvas.h" |
16 #include "SkGpuDevice.h" | 16 #include "SkGpuDevice.h" |
17 #include "SkGrPriv.h" | 17 #include "SkGr.h" |
18 #include "SkPixelRef.h" | 18 #include "SkPixelRef.h" |
19 | 19 |
20 SkImage_Gpu::SkImage_Gpu(int w, int h, uint32_t uniqueID, SkAlphaType at, GrText
ure* tex, | 20 SkImage_Gpu::SkImage_Gpu(int w, int h, uint32_t uniqueID, SkAlphaType at, GrText
ure* tex, |
21 SkSurface::Budgeted budgeted) | 21 SkSurface::Budgeted budgeted) |
22 : INHERITED(w, h, uniqueID) | 22 : INHERITED(w, h, uniqueID) |
23 , fTexture(SkRef(tex)) | 23 , fTexture(SkRef(tex)) |
24 , fAlphaType(at) | 24 , fAlphaType(at) |
25 , fBudgeted(budgeted) | 25 , fBudgeted(budgeted) |
26 , fAddedRasterVersionToCache(false) | 26 , fAddedRasterVersionToCache(false) |
27 {} | 27 {} |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 if (!dst) { | 323 if (!dst) { |
324 return nullptr; | 324 return nullptr; |
325 } | 325 } |
326 | 326 |
327 const SkIRect srcR = SkIRect::MakeWH(desc.fWidth, desc.fHeight); | 327 const SkIRect srcR = SkIRect::MakeWH(desc.fWidth, desc.fHeight); |
328 const SkIPoint dstP = SkIPoint::Make(0, 0); | 328 const SkIPoint dstP = SkIPoint::Make(0, 0); |
329 ctx->copySurface(dst, src, srcR, dstP, GrContext::kFlushWrites_PixelOp); | 329 ctx->copySurface(dst, src, srcR, dstP, GrContext::kFlushWrites_PixelOp); |
330 return dst; | 330 return dst; |
331 } | 331 } |
332 | 332 |
OLD | NEW |