| 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 // We will use the reordering buffer, unless we have NVPR. | 10 // We will use the reordering buffer, unless we have NVPR. |
| 11 // TODO move NVPR to batch so we can reorder | 11 // TODO move NVPR to batch so we can reorder |
| 12 static inline bool allow_reordering(const GrCaps* caps) { | 12 static inline bool allow_reordering(const GrCaps* caps) { |
| 13 return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSuppo
rt(); | 13 //return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSup
port(); |
| 14 return false; |
| 14 } | 15 } |
| 15 | 16 |
| 16 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) | 17 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) |
| 17 : INHERITED(context) | 18 : INHERITED(context) |
| 18 , fCommands(GrCommandBuilder::Create(context->getGpu(), allow_reordering(con
text->caps()))) | 19 , fCommands(GrCommandBuilder::Create(context->getGpu(), allow_reordering(con
text->caps()))) |
| 19 , fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4) | 20 , fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4) |
| 20 , fPathTransformBuffer(kPathXformBufferMinReserve * sizeof(float)/4) | 21 , fPathTransformBuffer(kPathXformBufferMinReserve * sizeof(float)/4) |
| 21 , fPipelineBuffer(kPipelineBufferMinReserve) | 22 , fPipelineBuffer(kPipelineBufferMinReserve) |
| 22 , fDrawID(0) { | 23 , fDrawID(0) { |
| 23 } | 24 } |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { | 193 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { |
| 193 this->unallocState(state); | 194 this->unallocState(state); |
| 194 } else { | 195 } else { |
| 195 fPrevState.reset(state); | 196 fPrevState.reset(state); |
| 196 } | 197 } |
| 197 | 198 |
| 198 this->recordTraceMarkersIfNecessary( | 199 this->recordTraceMarkersIfNecessary( |
| 199 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); | 200 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); |
| 200 return fPrevState; | 201 return fPrevState; |
| 201 } | 202 } |
| OLD | NEW |