From b542bae1f5a2726e52a15fa90acec7e7b935cb71 Mon Sep 17 00:00:00 2001 From: joshualitt Date: Tue, 28 Jul 2015 09:58:39 -0700 Subject: [PATCH] Rename GrInOrderDrawBuffer to GrBufferedDrawTarget BUG=skia: Review URL: https://codereview.chromium.org/1261033002 --- gyp/gpu.gypi | 4 +- samplecode/SampleManyRects.cpp | 2 +- ...rderDrawBuffer.cpp => GrBufferedDrawTarget.cpp} | 78 +++++++++++----------- ...rInOrderDrawBuffer.h => GrBufferedDrawTarget.h} | 24 +++---- src/gpu/GrClipMaskManager.cpp | 2 +- src/gpu/GrCommandBuilder.h | 6 +- src/gpu/GrContext.cpp | 6 +- src/gpu/GrInOrderCommandBuilder.cpp | 11 +-- src/gpu/GrInOrderCommandBuilder.h | 2 +- src/gpu/GrReorderCommandBuilder.h | 2 +- src/gpu/GrTargetCommands.cpp | 8 +-- src/gpu/GrTargetCommands.h | 8 +-- src/gpu/GrTest.cpp | 4 +- src/gpu/GrTracing.h | 2 +- 14 files changed, 78 insertions(+), 81 deletions(-) rename src/gpu/{GrInOrderDrawBuffer.cpp => GrBufferedDrawTarget.cpp} (69%) rename src/gpu/{GrInOrderDrawBuffer.h => GrBufferedDrawTarget.h} (85%) diff --git a/gyp/gpu.gypi b/gyp/gpu.gypi index 762c414..07f8d20 100644 --- a/gyp/gpu.gypi +++ b/gyp/gpu.gypi @@ -90,6 +90,8 @@ '<(skia_src_path)/gpu/GrBlurUtils.h', '<(skia_src_path)/gpu/GrBufferAllocPool.cpp', '<(skia_src_path)/gpu/GrBufferAllocPool.h', + '<(skia_src_path)/gpu/GrBufferedDrawTarget.cpp', + '<(skia_src_path)/gpu/GrBufferedDrawTarget.h', '<(skia_src_path)/gpu/GrCaps.cpp', '<(skia_src_path)/gpu/GrClip.cpp', '<(skia_src_path)/gpu/GrClipMaskCache.h', @@ -128,8 +130,6 @@ '<(skia_src_path)/gpu/GrInvariantOutput.cpp', '<(skia_src_path)/gpu/GrInOrderCommandBuilder.cpp', '<(skia_src_path)/gpu/GrInOrderCommandBuilder.h', - '<(skia_src_path)/gpu/GrInOrderDrawBuffer.cpp', - '<(skia_src_path)/gpu/GrInOrderDrawBuffer.h', '<(skia_src_path)/gpu/GrLayerCache.cpp', '<(skia_src_path)/gpu/GrLayerCache.h', '<(skia_src_path)/gpu/GrLayerHoister.cpp', diff --git a/samplecode/SampleManyRects.cpp b/samplecode/SampleManyRects.cpp index a570853..9c9e985 100644 --- a/samplecode/SampleManyRects.cpp +++ b/samplecode/SampleManyRects.cpp @@ -14,7 +14,7 @@ #include "SkView.h" /** - * Animated sample used to develop batched rect implementation in GrInOrderDrawBuffer. + * Animated sample used to develop batched rect implementation in GrBufferedDrawTarget. */ class ManyRectsView : public SampleView { private: diff --git a/src/gpu/GrInOrderDrawBuffer.cpp b/src/gpu/GrBufferedDrawTarget.cpp similarity index 69% rename from src/gpu/GrInOrderDrawBuffer.cpp rename to src/gpu/GrBufferedDrawTarget.cpp index 0b4dab1..f2d9367 100644 --- a/src/gpu/GrInOrderDrawBuffer.cpp +++ b/src/gpu/GrBufferedDrawTarget.cpp @@ -5,7 +5,7 @@ * found in the LICENSE file. */ -#include "GrInOrderDrawBuffer.h" +#include "GrBufferedDrawTarget.h" // We will use the reordering buffer, unless we have NVPR. // TODO move NVPR to batch so we can reorder @@ -13,7 +13,7 @@ static inline bool allow_reordering(const GrCaps* caps) { return caps && caps->shaderCaps() && !caps->shaderCaps()->pathRenderingSupport(); } -GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) +GrBufferedDrawTarget::GrBufferedDrawTarget(GrContext* context) : INHERITED(context) , fCommands(GrCommandBuilder::Create(context->getGpu(), allow_reordering(context->caps()))) , fPathIndexBuffer(kPathIdxBufferMinReserve * sizeof(char)/4) @@ -22,12 +22,12 @@ GrInOrderDrawBuffer::GrInOrderDrawBuffer(GrContext* context) , fDrawID(0) { } -GrInOrderDrawBuffer::~GrInOrderDrawBuffer() { +GrBufferedDrawTarget::~GrBufferedDrawTarget() { this->reset(); } -void GrInOrderDrawBuffer::onDrawBatch(GrBatch* batch, - const PipelineInfo& pipelineInfo) { +void GrBufferedDrawTarget::onDrawBatch(GrBatch* batch, + const PipelineInfo& pipelineInfo) { State* state = this->setupPipelineAndShouldDraw(batch, pipelineInfo); if (!state) { return; @@ -37,21 +37,21 @@ void GrInOrderDrawBuffer::onDrawBatch(GrBatch* batch, this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::onStencilPath(const GrPipelineBuilder& pipelineBuilder, - const GrPathProcessor* pathProc, - const GrPath* path, - const GrScissorState& scissorState, - const GrStencilSettings& stencilSettings) { +void GrBufferedDrawTarget::onStencilPath(const GrPipelineBuilder& pipelineBuilder, + const GrPathProcessor* pathProc, + const GrPath* path, + const GrScissorState& scissorState, + const GrStencilSettings& stencilSettings) { GrTargetCommands::Cmd* cmd = fCommands->recordStencilPath(pipelineBuilder, pathProc, path, scissorState, stencilSettings); this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::onDrawPath(const GrPathProcessor* pathProc, - const GrPath* path, - const GrStencilSettings& stencilSettings, - const PipelineInfo& pipelineInfo) { +void GrBufferedDrawTarget::onDrawPath(const GrPathProcessor* pathProc, + const GrPath* path, + const GrStencilSettings& stencilSettings, + const PipelineInfo& pipelineInfo) { State* state = this->setupPipelineAndShouldDraw(pathProc, pipelineInfo); if (!state) { return; @@ -60,15 +60,15 @@ void GrInOrderDrawBuffer::onDrawPath(const GrPathProcessor* pathProc, this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::onDrawPaths(const GrPathProcessor* pathProc, - const GrPathRange* pathRange, - const void* indices, - PathIndexType indexType, - const float transformValues[], - PathTransformType transformType, - int count, - const GrStencilSettings& stencilSettings, - const PipelineInfo& pipelineInfo) { +void GrBufferedDrawTarget::onDrawPaths(const GrPathProcessor* pathProc, + const GrPathRange* pathRange, + const void* indices, + PathIndexType indexType, + const float transformValues[], + PathTransformType transformType, + int count, + const GrStencilSettings& stencilSettings, + const PipelineInfo& pipelineInfo) { State* state = this->setupPipelineAndShouldDraw(pathProc, pipelineInfo); if (!state) { return; @@ -80,20 +80,20 @@ void GrInOrderDrawBuffer::onDrawPaths(const GrPathProcessor* pathProc, this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::onClear(const SkIRect* rect, GrColor color, +void GrBufferedDrawTarget::onClear(const SkIRect* rect, GrColor color, bool canIgnoreRect, GrRenderTarget* renderTarget) { GrTargetCommands::Cmd* cmd = fCommands->recordClear(rect, color, canIgnoreRect, renderTarget); this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::clearStencilClip(const SkIRect& rect, - bool insideClip, - GrRenderTarget* renderTarget) { +void GrBufferedDrawTarget::clearStencilClip(const SkIRect& rect, + bool insideClip, + GrRenderTarget* renderTarget) { GrTargetCommands::Cmd* cmd = fCommands->recordClearStencilClip(rect, insideClip, renderTarget); this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::discard(GrRenderTarget* renderTarget) { +void GrBufferedDrawTarget::discard(GrRenderTarget* renderTarget) { if (!this->caps()->discardRenderTargetSupport()) { return; } @@ -102,7 +102,7 @@ void GrInOrderDrawBuffer::discard(GrRenderTarget* renderTarget) { this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::onReset() { +void GrBufferedDrawTarget::onReset() { fCommands->reset(); fPathIndexBuffer.rewind(); fPathTransformBuffer.rewind(); @@ -118,20 +118,20 @@ void GrInOrderDrawBuffer::onReset() { } } -void GrInOrderDrawBuffer::onFlush() { +void GrBufferedDrawTarget::onFlush() { fCommands->flush(this); ++fDrawID; } -void GrInOrderDrawBuffer::onCopySurface(GrSurface* dst, - GrSurface* src, - const SkIRect& srcRect, - const SkIPoint& dstPoint) { +void GrBufferedDrawTarget::onCopySurface(GrSurface* dst, + GrSurface* src, + const SkIRect& srcRect, + const SkIPoint& dstPoint) { GrTargetCommands::Cmd* cmd = fCommands->recordCopySurface(dst, src, srcRect, dstPoint); this->recordTraceMarkersIfNecessary(cmd); } -void GrInOrderDrawBuffer::recordTraceMarkersIfNecessary(GrTargetCommands::Cmd* cmd) { +void GrBufferedDrawTarget::recordTraceMarkersIfNecessary(GrTargetCommands::Cmd* cmd) { if (!cmd) { return; } @@ -147,8 +147,8 @@ void GrInOrderDrawBuffer::recordTraceMarkersIfNecessary(GrTargetCommands::Cmd* c } GrTargetCommands::State* -GrInOrderDrawBuffer::setupPipelineAndShouldDraw(const GrPrimitiveProcessor* primProc, - const GrDrawTarget::PipelineInfo& pipelineInfo) { +GrBufferedDrawTarget::setupPipelineAndShouldDraw(const GrPrimitiveProcessor* primProc, + const GrDrawTarget::PipelineInfo& pipelineInfo) { State* state = this->allocState(primProc); this->setupPipeline(pipelineInfo, state->pipelineLocation()); @@ -176,8 +176,8 @@ GrInOrderDrawBuffer::setupPipelineAndShouldDraw(const GrPrimitiveProcessor* prim } GrTargetCommands::State* -GrInOrderDrawBuffer::setupPipelineAndShouldDraw(GrBatch* batch, - const GrDrawTarget::PipelineInfo& pipelineInfo) { +GrBufferedDrawTarget::setupPipelineAndShouldDraw(GrBatch* batch, + const GrDrawTarget::PipelineInfo& pipelineInfo) { State* state = this->allocState(); this->setupPipeline(pipelineInfo, state->pipelineLocation()); diff --git a/src/gpu/GrInOrderDrawBuffer.h b/src/gpu/GrBufferedDrawTarget.h similarity index 85% rename from src/gpu/GrInOrderDrawBuffer.h rename to src/gpu/GrBufferedDrawTarget.h index 908632c..df9ad46 100644 --- a/src/gpu/GrInOrderDrawBuffer.h +++ b/src/gpu/GrBufferedDrawTarget.h @@ -5,34 +5,30 @@ * found in the LICENSE file. */ -#ifndef GrInOrderDrawBuffer_DEFINED -#define GrInOrderDrawBuffer_DEFINED +#ifndef GrBufferedDrawTarget_DEFINED +#define GrBufferedDrawTarget_DEFINED #include "GrDrawTarget.h" #include "GrCommandBuilder.h" #include "SkChunkAlloc.h" /** - * GrInOrderDrawBuffer is an implementation of GrDrawTarget that queues up draws for eventual - * playback into a GrGpu. In theory one draw buffer could playback into another. When index or - * vertex buffers are used as geometry sources it is the callers the draw buffer only holds - * references to the buffers. It is the callers responsibility to ensure that the data is still - * valid when the draw buffer is played back into a GrGpu. Similarly, it is the caller's - * responsibility to ensure that all referenced textures, buffers, and render-targets are associated - * in the GrGpu object that the buffer is played back into. The buffer requires VB and IB pools to - * store geometry. + * GrBufferedDrawTarget is an implementation of GrDrawTarget that queues up draws for eventual + * playback into a GrGpu. In theory one draw buffer could playback into another. Similarly, it is + * the caller's responsibility to ensure that all referenced textures, buffers, and render-targets + * are associated in the GrGpu object that the buffer is played back into. */ -class GrInOrderDrawBuffer : public GrClipTarget { +class GrBufferedDrawTarget : public GrClipTarget { public: /** - * Creates a GrInOrderDrawBuffer + * Creates a GrBufferedDrawTarget * * @param context the context object that owns this draw buffer. */ - GrInOrderDrawBuffer(GrContext* context); + GrBufferedDrawTarget(GrContext* context); - ~GrInOrderDrawBuffer() override; + ~GrBufferedDrawTarget() override; void clearStencilClip(const SkIRect& rect, bool insideClip, diff --git a/src/gpu/GrClipMaskManager.cpp b/src/gpu/GrClipMaskManager.cpp index b15bee9..ec833c8 100644 --- a/src/gpu/GrClipMaskManager.cpp +++ b/src/gpu/GrClipMaskManager.cpp @@ -349,7 +349,7 @@ bool GrClipMaskManager::setupClipping(const GrPipelineBuilder& pipelineBuilder, // Either a hard (stencil buffer) clip was explicitly requested or an anti-aliased clip couldn't // be created. In either case, free up the texture in the anti-aliased mask cache. // TODO: this may require more investigation. Ganesh performs a lot of utility draws (e.g., - // clears, InOrderDrawBuffer playbacks) that hit the stencil buffer path. These may be + // clears, GrBufferedDrawTarget playbacks) that hit the stencil buffer path. These may be // "incorrectly" clearing the AA cache. fAACache.reset(); diff --git a/src/gpu/GrCommandBuilder.h b/src/gpu/GrCommandBuilder.h index a94a439..c709586 100644 --- a/src/gpu/GrCommandBuilder.h +++ b/src/gpu/GrCommandBuilder.h @@ -10,7 +10,7 @@ #include "GrTargetCommands.h" -class GrInOrderDrawBuffer; +class GrBufferedDrawTarget; class GrCommandBuilder : ::SkNoncopyable { public: @@ -22,7 +22,7 @@ public: virtual ~GrCommandBuilder() {} void reset() { fCommands.reset(); } - void flush(GrInOrderDrawBuffer* iodb) { fCommands.flush(iodb); } + void flush(GrBufferedDrawTarget* bufferedDrawTarget) { fCommands.flush(bufferedDrawTarget); } virtual Cmd* recordClearStencilClip(const SkIRect& rect, bool insideClip, @@ -39,7 +39,7 @@ public: const GrPath*, const GrStencilSettings&) = 0; virtual Cmd* recordDrawPaths(State*, - GrInOrderDrawBuffer*, + GrBufferedDrawTarget*, const GrPathProcessor*, const GrPathRange*, const void*, diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp index adbde94..9e1d904 100755 --- a/src/gpu/GrContext.cpp +++ b/src/gpu/GrContext.cpp @@ -13,6 +13,7 @@ #include "GrBatchFontCache.h" #include "GrBatchTarget.h" #include "GrBatchTest.h" +#include "GrBufferedDrawTarget.h" #include "GrCaps.h" #include "GrContextOptions.h" #include "GrDefaultGeoProcFactory.h" @@ -22,7 +23,6 @@ #include "GrGpu.h" #include "GrImmediateDrawTarget.h" #include "GrIndexBuffer.h" -#include "GrInOrderDrawBuffer.h" #include "GrLayerCache.h" #include "GrOvalRenderer.h" #include "GrPathRenderer.h" @@ -66,7 +66,7 @@ void GrContext::DrawingMgr::init(GrContext* context) { #ifdef IMMEDIATE_MODE fDrawTarget = SkNEW_ARGS(GrImmediateDrawTarget, (context)); #else - fDrawTarget = SkNEW_ARGS(GrInOrderDrawBuffer, (context)); + fDrawTarget = SkNEW_ARGS(GrBufferedDrawTarget, (context)); #endif } @@ -276,7 +276,7 @@ void GrContext::OverBudgetCB(void* data) { GrContext* context = reinterpret_cast(data); - // Flush the InOrderDrawBuffer to possibly free up some textures + // Flush the GrBufferedDrawTarget to possibly free up some textures context->fFlushToReduceCacheSize = true; } diff --git a/src/gpu/GrInOrderCommandBuilder.cpp b/src/gpu/GrInOrderCommandBuilder.cpp index 6cd6082..d8e84c0 100644 --- a/src/gpu/GrInOrderCommandBuilder.cpp +++ b/src/gpu/GrInOrderCommandBuilder.cpp @@ -7,8 +7,9 @@ #include "GrInOrderCommandBuilder.h" +#include "GrBufferedDrawTarget.h" + #include "GrColor.h" -#include "GrInOrderDrawBuffer.h" #include "SkPoint.h" static bool path_fill_type_is_winding(const GrStencilSettings& pathStencilSettings) { @@ -67,7 +68,7 @@ GrInOrderCommandBuilder::recordDrawPath(State* state, GrTargetCommands::Cmd* GrInOrderCommandBuilder::recordDrawPaths(State* state, - GrInOrderDrawBuffer* iodb, + GrBufferedDrawTarget* bufferedDrawTarget, const GrPathProcessor* pathProc, const GrPathRange* pathRange, const void* indexValues, @@ -84,9 +85,9 @@ GrInOrderCommandBuilder::recordDrawPaths(State* state, char* savedIndices; float* savedTransforms; - iodb->appendIndicesAndTransforms(indexValues, indexType, - transformValues, transformType, - count, &savedIndices, &savedTransforms); + bufferedDrawTarget->appendIndicesAndTransforms(indexValues, indexType, + transformValues, transformType, + count, &savedIndices, &savedTransforms); if (!this->cmdBuffer()->empty() && Cmd::kDrawPaths_CmdType == this->cmdBuffer()->back().type()) { diff --git a/src/gpu/GrInOrderCommandBuilder.h b/src/gpu/GrInOrderCommandBuilder.h index 164db92..f992cc5 100644 --- a/src/gpu/GrInOrderCommandBuilder.h +++ b/src/gpu/GrInOrderCommandBuilder.h @@ -28,7 +28,7 @@ public: const GrPath*, const GrStencilSettings&) override; Cmd* recordDrawPaths(State*, - GrInOrderDrawBuffer*, + GrBufferedDrawTarget*, const GrPathProcessor*, const GrPathRange*, const void*, diff --git a/src/gpu/GrReorderCommandBuilder.h b/src/gpu/GrReorderCommandBuilder.h index 99a2c11..6ee11f9 100644 --- a/src/gpu/GrReorderCommandBuilder.h +++ b/src/gpu/GrReorderCommandBuilder.h @@ -36,7 +36,7 @@ public: } Cmd* recordDrawPaths(State*, - GrInOrderDrawBuffer*, + GrBufferedDrawTarget*, const GrPathProcessor*, const GrPathRange*, const void*, diff --git a/src/gpu/GrTargetCommands.cpp b/src/gpu/GrTargetCommands.cpp index 84dbf93..9585b65 100644 --- a/src/gpu/GrTargetCommands.cpp +++ b/src/gpu/GrTargetCommands.cpp @@ -7,19 +7,19 @@ #include "GrTargetCommands.h" -#include "GrInOrderDrawBuffer.h" +#include "GrBufferedDrawTarget.h" void GrTargetCommands::reset() { fCmdBuffer.reset(); fBatchTarget.reset(); } -void GrTargetCommands::flush(GrInOrderDrawBuffer* iodb) { +void GrTargetCommands::flush(GrBufferedDrawTarget* bufferedDrawTarget) { if (fCmdBuffer.empty()) { return; } - GrGpu* gpu = iodb->getGpu(); + GrGpu* gpu = bufferedDrawTarget->getGpu(); // Loop over all batches and generate geometry CmdBuffer::Iter genIter(fCmdBuffer); @@ -40,7 +40,7 @@ void GrTargetCommands::flush(GrInOrderDrawBuffer* iodb) { GrGpuTraceMarker newMarker("", -1); SkString traceString; if (iter->isTraced()) { - traceString = iodb->getCmdString(iter->markerID()); + traceString = bufferedDrawTarget->getCmdString(iter->markerID()); newMarker.fMarker = traceString.c_str(); gpu->addGpuTraceMarker(&newMarker); } diff --git a/src/gpu/GrTargetCommands.h b/src/gpu/GrTargetCommands.h index e5f3cd5..8b47cfd 100644 --- a/src/gpu/GrTargetCommands.h +++ b/src/gpu/GrTargetCommands.h @@ -19,7 +19,7 @@ #include "SkRect.h" #include "SkTypes.h" -class GrInOrderDrawBuffer; +class GrBufferedDrawTarget; class GrTargetCommands : ::SkNoncopyable { @@ -61,16 +61,16 @@ public: }; void reset(); - void flush(GrInOrderDrawBuffer*); + void flush(GrBufferedDrawTarget*); private: friend class GrCommandBuilder; - friend class GrInOrderDrawBuffer; // This goes away when State becomes just a pipeline + friend class GrBufferedDrawTarget; // This goes away when State becomes just a pipeline friend class GrReorderCommandBuilder; typedef GrGpu::DrawArgs DrawArgs; - void recordXferBarrierIfNecessary(const GrPipeline&, GrInOrderDrawBuffer*); + void recordXferBarrierIfNecessary(const GrPipeline&, GrBufferedDrawTarget*); // TODO: This can be just a pipeline once paths are in batch, and it should live elsewhere struct State : public SkNVRefCnt { diff --git a/src/gpu/GrTest.cpp b/src/gpu/GrTest.cpp index 1bf13a1..fd2908e 100644 --- a/src/gpu/GrTest.cpp +++ b/src/gpu/GrTest.cpp @@ -7,9 +7,10 @@ */ #include "GrTest.h" + +#include "GrBufferedDrawTarget.h" #include "GrContextOptions.h" #include "GrGpuResourceCacheAccess.h" -#include "GrInOrderDrawBuffer.h" #include "GrResourceCache.h" #include "SkString.h" @@ -135,7 +136,6 @@ void GrResourceCache::changeTimestamp(uint32_t newTimestamp) { fTimestamp = newT // Code for the mock context. It's built on a mock GrGpu class that does nothing. //// -#include "GrInOrderDrawBuffer.h" #include "GrGpu.h" class GrPipeline; diff --git a/src/gpu/GrTracing.h b/src/gpu/GrTracing.h index 0f76f23..5fea60b 100644 --- a/src/gpu/GrTracing.h +++ b/src/gpu/GrTracing.h @@ -8,9 +8,9 @@ #ifndef GrTracing_DEFINED #define GrTracing_DEFINED +#include "GrBufferedDrawTarget.h" #include "GrDrawTarget.h" #include "GrGpu.h" -#include "GrInOrderDrawBuffer.h" #include "GrTraceMarker.h" #include "SkTraceEvent.h" -- 2.7.4