aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/drawbitmaprect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/drawbitmaprect.cpp')
-rw-r--r--gm/drawbitmaprect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gm/drawbitmaprect.cpp b/gm/drawbitmaprect.cpp
index d4fa141482..c90ac2eaa1 100644
--- a/gm/drawbitmaprect.cpp
+++ b/gm/drawbitmaprect.cpp
@@ -11,6 +11,7 @@
#include "SkColorPriv.h"
#include "SkGradientShader.h"
#include "SkImage.h"
+#include "SkImage_Base.h"
#include "SkShader.h"
#include "SkSurface.h"
@@ -85,9 +86,8 @@ static SkImage* makebm(SkCanvas* origCanvas, SkBitmap* resultBM, int w, int h) {
SkBitmap tempBM;
#if SK_SUPPORT_GPU
- if (image->getTexture()) {
- GrWrapTextureInBitmap(image->getTexture(),
- image->width(), image->height(), image->isOpaque(), &tempBM);
+ if (GrTexture* texture = as_IB(image)->peekTexture()) {
+ GrWrapTextureInBitmap(texture, image->width(), image->height(), image->isOpaque(), &tempBM);
} else
#endif
{