| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 "GrBatchTarget.h" | 8 #include "GrBatchTarget.h" |
| 9 | 9 |
| 10 #include "GrBufferAllocPool.h" | 10 #include "GrBufferAllocPool.h" |
| 11 #include "GrPipeline.h" | 11 #include "GrPipeline.h" |
| 12 | 12 |
| 13 /* | 13 /* |
| 14 void GrBatchTarget::flush() { | 14 void GrBatchTarget::flush() { |
| 15 FlushBuffer::Iter iter(fFlushBuffer); | 15 FlushBuffer::Iter iter(fFlushBuffer); |
| 16 fVertexPool->unmap(); | 16 fVertexPool->unmap(); |
| 17 fIndexPool->unmap(); | 17 fIndexPool->unmap(); |
| 18 | 18 |
| 19 while (iter.next()) { | 19 while (iter.next()) { |
| 20 GrProgramDesc desc; | 20 GrProgramDesc desc; |
| 21 BufferedFlush* bf = iter.get(); | 21 BufferedFlush* bf = iter.get(); |
| 22 const GrPipeline* pipeline = bf->fPipeline; | 22 const GrPipeline* pipeline = bf->fPipeline; |
| 23 const GrPrimitiveProcessor* primProc = bf->fPrimitiveProcessor.get(); | 23 const GrPrimitiveProcessor* primProc = bf->fPrimitiveProcessor.get(); |
| 24 fGpu->buildProgramDesc(&desc, *primProc, *pipeline, pipeline->descInfo()
, | 24 fGpu->buildProgramDesc(&desc, *primProc, *pipeline, bf->fBatchTracker); |
| 25 bf->fBatchTracker); | |
| 26 | 25 |
| 27 GrGpu::DrawArgs args(primProc, pipeline, &desc, &bf->fBatchTracker); | 26 GrGpu::DrawArgs args(primProc, pipeline, &desc, &bf->fBatchTracker); |
| 28 for (int i = 0; i < bf->fDraws.count(); i++) { | 27 for (int i = 0; i < bf->fDraws.count(); i++) { |
| 29 fGpu->draw(args, bf->fDraws[i]); | 28 fGpu->draw(args, bf->fDraws[i]); |
| 30 } | 29 } |
| 31 } | 30 } |
| 32 fFlushBuffer.reset(); | 31 fFlushBuffer.reset(); |
| 33 }*/ | 32 }*/ |
| 34 /* | 33 /* |
| 35 void GrBatchTarget::flushNext(int n) { | 34 void GrBatchTarget::flushNext(int n) { |
| 36 for (; n > 0; n--) { | 35 for (; n > 0; n--) { |
| 37 SkDEBUGCODE(bool verify =) fIter.next(); | 36 SkDEBUGCODE(bool verify =) fIter.next(); |
| 38 SkASSERT(verify); | 37 SkASSERT(verify); |
| 39 GrProgramDesc desc; | 38 GrProgramDesc desc; |
| 40 BufferedFlush* bf = fIter.get(); | 39 BufferedFlush* bf = fIter.get(); |
| 41 const GrPipeline* pipeline = bf->fPipeline; | 40 const GrPipeline* pipeline = bf->fPipeline; |
| 42 const GrPrimitiveProcessor* primProc = bf->fPrimitiveProcessor.get(); | 41 const GrPrimitiveProcessor* primProc = bf->fPrimitiveProcessor.get(); |
| 43 fGpu->buildProgramDesc(&desc, *primProc, *pipeline, pipeline->descInfo()
, | 42 fGpu->buildProgramDesc(&desc, *primProc, *pipeline, bf->fBatchTracker); |
| 44 bf->fBatchTracker); | |
| 45 | 43 |
| 46 GrGpu::DrawArgs args(primProc, pipeline, &desc, &bf->fBatchTracker); | 44 GrGpu::DrawArgs args(primProc, pipeline, &desc, &bf->fBatchTracker); |
| 47 for (int i = 0; i < bf->fDraws.count(); i++) { | 45 for (int i = 0; i < bf->fDraws.count(); i++) { |
| 48 fGpu->draw(args, bf->fDraws[i]); | 46 fGpu->draw(args, bf->fDraws[i]); |
| 49 } | 47 } |
| 50 } | 48 } |
| 51 }*/ | 49 }*/ |
| OLD | NEW |