Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(222)

Side by Side Diff: src/gpu/GrTextureProvider.cpp

Issue 1673923003: Revert of skia: Add support for CHROMIUM_image backed textures. (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrTexture.cpp ('k') | src/gpu/SkGpuDevice.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "GrTextureProvider.h" 9 #include "GrTextureProvider.h"
10 #include "GrTexturePriv.h" 10 #include "GrTexturePriv.h"
(...skipping 22 matching lines...) Expand all
33 GrTexture* GrTextureProvider::createTexture(const GrSurfaceDesc& desc, bool budg eted, 33 GrTexture* GrTextureProvider::createTexture(const GrSurfaceDesc& desc, bool budg eted,
34 const void* srcData, size_t rowBytes ) { 34 const void* srcData, size_t rowBytes ) {
35 ASSERT_SINGLE_OWNER 35 ASSERT_SINGLE_OWNER
36 if (this->isAbandoned()) { 36 if (this->isAbandoned()) {
37 return nullptr; 37 return nullptr;
38 } 38 }
39 if ((desc.fFlags & kRenderTarget_GrSurfaceFlag) && 39 if ((desc.fFlags & kRenderTarget_GrSurfaceFlag) &&
40 !fGpu->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) { 40 !fGpu->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) {
41 return nullptr; 41 return nullptr;
42 } 42 }
43 if (!GrPixelConfigIsCompressed(desc.fConfig) && 43 if (!GrPixelConfigIsCompressed(desc.fConfig)) {
44 !desc.fTextureStorageAllocator.fAllocateTextureStorage) {
45 static const uint32_t kFlags = kExact_ScratchTextureFlag | 44 static const uint32_t kFlags = kExact_ScratchTextureFlag |
46 kNoCreate_ScratchTextureFlag; 45 kNoCreate_ScratchTextureFlag;
47 if (GrTexture* texture = this->refScratchTexture(desc, kFlags)) { 46 if (GrTexture* texture = this->refScratchTexture(desc, kFlags)) {
48 if (!srcData || texture->writePixels(0, 0, desc.fWidth, desc.fHeight , desc.fConfig, 47 if (!srcData || texture->writePixels(0, 0, desc.fWidth, desc.fHeight , desc.fConfig,
49 srcData, rowBytes)) { 48 srcData, rowBytes)) {
50 if (!budgeted) { 49 if (!budgeted) {
51 texture->resourcePriv().makeUnbudgeted(); 50 texture->resourcePriv().makeUnbudgeted();
52 } 51 }
53 return texture; 52 return texture;
54 } 53 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 GrTexture* GrTextureProvider::findAndRefTextureByUniqueKey(const GrUniqueKey& ke y) { 159 GrTexture* GrTextureProvider::findAndRefTextureByUniqueKey(const GrUniqueKey& ke y) {
161 ASSERT_SINGLE_OWNER 160 ASSERT_SINGLE_OWNER
162 GrGpuResource* resource = this->findAndRefResourceByUniqueKey(key); 161 GrGpuResource* resource = this->findAndRefResourceByUniqueKey(key);
163 if (resource) { 162 if (resource) {
164 GrTexture* texture = static_cast<GrSurface*>(resource)->asTexture(); 163 GrTexture* texture = static_cast<GrSurface*>(resource)->asTexture();
165 SkASSERT(texture); 164 SkASSERT(texture);
166 return texture; 165 return texture;
167 } 166 }
168 return NULL; 167 return NULL;
169 } 168 }
OLDNEW
« no previous file with comments | « src/gpu/GrTexture.cpp ('k') | src/gpu/SkGpuDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698