Revert of Fall back to older inorder buffer if we have NVPR (patchset #3 id:40001 of https://codereview.chromium.org/1143153008/)
Reason for revert: breaking bots Original issue's description: > Fall back to older inorder buffer if we have NVPR > > BUG=skia: > > Committed: https://skia.googlesource.com/skia/+/b72ec98b2090e5728354dac66eb1886a28e4da6b TBR=bsalomon@google.com,joshualitt@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1160663006
This commit is contained in:
parent
b72ec98b20
commit
d8e2d28913
@ -7,16 +7,11 @@
|
||||
|
||||
#include "GrInOrderDrawBuffer.h"
|
||||
|
||||
// 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 GrShaderCaps* caps) {
|
||||
return !caps->pathRenderingSupport();
|
||||
}
|
||||
static const bool kEnableReordering = true;
|
||||
|
||||
GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context)
|
||||
: INHERITED(context)
|
||||
, fCommands(GrCommandBuilder::Create(context->getGpu(),
|
||||
allow_reordering(context->getGpu()->caps()->shaderCaps())))
|
||||
, fCommands(GrCommandBuilder::Create(context->getGpu(), kEnableReordering))
|
||||
, fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4)
|
||||
, fPathTransformBuffer(kPathXformBufferMinReserve * sizeof(float)/4)
|
||||
, fPipelineBuffer(kPipelineBufferMinReserve)
|
||||
|
Loading…
Reference in New Issue
Block a user