OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "GrInOrderDrawBuffer.h" | 8 #include "GrInOrderDrawBuffer.h" |
9 | 9 |
10 static const bool kEnableReordering = true; | 10 // We will use the reordering buffer, unless we have NVPR. |
| 11 // TODO move NVPR to batch so we can reorder |
| 12 static inline bool allow_reordering(const GrGpu* gpu) { |
| 13 const GrCaps* caps = gpu->caps(); |
| 14 return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSuppo
rt(); |
| 15 } |
11 | 16 |
12 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) | 17 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) |
13 : INHERITED(context) | 18 : INHERITED(context) |
14 , fCommands(GrCommandBuilder::Create(context->getGpu(), kEnableReordering)) | 19 , fCommands(GrCommandBuilder::Create(context->getGpu(), allow_reordering(con
text->getGpu()))) |
15 , fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4) | 20 , fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4) |
16 , fPathTransformBuffer(kPathXformBufferMinReserve * sizeof(float)/4) | 21 , fPathTransformBuffer(kPathXformBufferMinReserve * sizeof(float)/4) |
17 , fPipelineBuffer(kPipelineBufferMinReserve) | 22 , fPipelineBuffer(kPipelineBufferMinReserve) |
18 , fDrawID(0) { | 23 , fDrawID(0) { |
19 } | 24 } |
20 | 25 |
21 GrInOrderDrawBuffer::~GrInOrderDrawBuffer() { | 26 GrInOrderDrawBuffer::~GrInOrderDrawBuffer() { |
22 this->reset(); | 27 this->reset(); |
23 } | 28 } |
24 | 29 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { | 194 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { |
190 this->unallocState(state); | 195 this->unallocState(state); |
191 } else { | 196 } else { |
192 fPrevState.reset(state); | 197 fPrevState.reset(state); |
193 } | 198 } |
194 | 199 |
195 this->recordTraceMarkersIfNecessary( | 200 this->recordTraceMarkersIfNecessary( |
196 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); | 201 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); |
197 return fPrevState; | 202 return fPrevState; |
198 } | 203 } |
OLD | NEW |