aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-06-02 07:26:43 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-02 07:26:43 -0700
commit09a486e270067427c96e3a2a50ccc48890849197 (patch)
tree7da7f9bd5194e97a020cf5ea899e187ab24c719a /src
parent5c7dfeecb272d623297ffaba022b675abd384210 (diff)
fix dm crash
TBR=bsalomon@google.com BUG=skia: Review URL: https://codereview.chromium.org/1149243006
Diffstat (limited to 'src')
-rw-r--r--src/gpu/GrInOrderDrawBuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrInOrderDrawBuffer.cpp b/src/gpu/GrInOrderDrawBuffer.cpp
index 99725a512c..2a2b5b6912 100644
--- a/src/gpu/GrInOrderDrawBuffer.cpp
+++ b/src/gpu/GrInOrderDrawBuffer.cpp
@@ -10,7 +10,7 @@
// We will use the reordering buffer, unless we have NVPR.
// TODO move NVPR to batch so we can reorder
static inline bool allow_reordering(const GrCaps* caps) {
- return !caps->shaderCaps()->pathRenderingSupport();
+ return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSupport();
}
GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context)