| 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 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) | 10 GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 void GrInOrderDrawBuffer::onFlush() { | 115 void GrInOrderDrawBuffer::onFlush() { |
| 116 fCommands->flush(this); | 116 fCommands->flush(this); |
| 117 ++fDrawID; | 117 ++fDrawID; |
| 118 } | 118 } |
| 119 | 119 |
| 120 void GrInOrderDrawBuffer::onCopySurface(GrSurface* dst, | 120 void GrInOrderDrawBuffer::onCopySurface(GrSurface* dst, |
| 121 GrSurface* src, | 121 GrSurface* src, |
| 122 const SkIRect& srcRect, | 122 const SkIRect& srcRect, |
| 123 const SkIPoint& dstPoint) { | 123 const SkIPoint& dstPoint) { |
| 124 SkASSERT(this->getGpu()->canCopySurface(dst, src, srcRect, dstPoint)); | |
| 125 GrTargetCommands::Cmd* cmd = fCommands->recordCopySurface(dst, src, srcRect,
dstPoint); | 124 GrTargetCommands::Cmd* cmd = fCommands->recordCopySurface(dst, src, srcRect,
dstPoint); |
| 126 this->recordTraceMarkersIfNecessary(cmd); | 125 this->recordTraceMarkersIfNecessary(cmd); |
| 127 } | 126 } |
| 128 | 127 |
| 129 void GrInOrderDrawBuffer::recordTraceMarkersIfNecessary(GrTargetCommands::Cmd* c
md) { | 128 void GrInOrderDrawBuffer::recordTraceMarkersIfNecessary(GrTargetCommands::Cmd* c
md) { |
| 130 if (!cmd) { | 129 if (!cmd) { |
| 131 return; | 130 return; |
| 132 } | 131 } |
| 133 const GrTraceMarkerSet& activeTraceMarkers = this->getActiveTraceMarkers(); | 132 const GrTraceMarkerSet& activeTraceMarkers = this->getActiveTraceMarkers(); |
| 134 if (activeTraceMarkers.count() > 0) { | 133 if (activeTraceMarkers.count() > 0) { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { | 186 fPrevState->getPipeline()->isEqual(*state->getPipeline())) { |
| 188 this->unallocState(state); | 187 this->unallocState(state); |
| 189 } else { | 188 } else { |
| 190 fPrevState.reset(state); | 189 fPrevState.reset(state); |
| 191 } | 190 } |
| 192 | 191 |
| 193 this->recordTraceMarkersIfNecessary( | 192 this->recordTraceMarkersIfNecessary( |
| 194 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); | 193 fCommands->recordXferBarrierIfNecessary(*fPrevState->getPipeline(),
*this->caps())); |
| 195 return fPrevState; | 194 return fPrevState; |
| 196 } | 195 } |
| OLD | NEW |