diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-05 21:00:26 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-05 21:00:26 +0000 |
commit | df17c64d2872ce0e79a744b6746d7e3ffc034ca7 (patch) | |
tree | e72926650cb64ef9df60cda7d61ded6a4fe8f52a | |
parent | 31ca955c0611712528c0897928bf3b1100be2fcd (diff) |
Remove assert to allow Android bots (that don't support NPOT textures) to continue in Debug mode
https://codereview.appspot.com/6820094/
git-svn-id: http://skia.googlecode.com/svn/trunk@6303 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/gpu/GrContext.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp index ceb37cd11d..1292b51afc 100644 --- a/src/gpu/GrContext.cpp +++ b/src/gpu/GrContext.cpp @@ -284,7 +284,6 @@ GrTexture* GrContext::createResizedTexture(const GrTextureDesc& desc, if (NULL == clampedTexture) { clampedTexture = this->createTexture(NULL, desc, cacheData, srcData, rowBytes); - GrAssert(NULL != clampedTexture); if (NULL == clampedTexture) { return NULL; } |