aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-06-02 13:48:38 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-02 13:48:38 -0700
commitce09a28d0cf069daed28e36cb0123568a2c20eb6 (patch)
tree80d5de43bc646f55fb8577443b90a3bd8265a0ae /src/gpu
parent1acea86914797bc33856ff62b5cdfbe82c58dd67 (diff)
Reenable reordering
TBR= BUG=skia: Review URL: https://codereview.chromium.org/1160063003
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrInOrderDrawBuffer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gpu/GrInOrderDrawBuffer.cpp b/src/gpu/GrInOrderDrawBuffer.cpp
index d26850342b..2a2b5b6912 100644
--- a/src/gpu/GrInOrderDrawBuffer.cpp
+++ b/src/gpu/GrInOrderDrawBuffer.cpp
@@ -10,8 +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 && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSupport();
- return false;
+ return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSupport();
}
GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context)