aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-05 21:00:26 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-05 21:00:26 +0000
commitdf17c64d2872ce0e79a744b6746d7e3ffc034ca7 (patch)
treee72926650cb64ef9df60cda7d61ded6a4fe8f52a
parent31ca955c0611712528c0897928bf3b1100be2fcd (diff)
Remove assert to allow Android bots (that don't support NPOT textures) to continue in Debug mode
-rw-r--r--src/gpu/GrContext.cpp1
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;
}