blob: 4b578b63def66e247c409931fe63adc7f49ae43e [file] [log] [blame]
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrTexureOpList_DEFINED
#define GrTexureOpList_DEFINED
#include "include/gpu/GrGpuResource.h"
#include "src/gpu/GrOpList.h"
#include "src/gpu/GrSurfaceProxy.h"
#include "include/private/SkTArray.h"
class GrAuditTrail;
class GrGpu;
class GrOp;
class GrTextureProxy;
struct SkIPoint;
struct SkIRect;
class GrTextureOpList final : public GrOpList {
public:
GrTextureOpList(sk_sp<GrOpMemoryPool>, sk_sp<GrTextureProxy>, GrAuditTrail*);
~GrTextureOpList() override;
/**
* Empties the draw buffer of any queued ops.
*/
void endFlush() override;
/**
* Together these two functions flush all queued ops to GrGpuCommandBuffer. The return value
* of executeOps() indicates whether any commands were actually issued to the GPU.
*/
void onPrepare(GrOpFlushState* flushState) override;
bool onExecute(GrOpFlushState* flushState) override;
GrTextureOpList* asTextureOpList() override { return this; }
SkDEBUGCODE(void dump(bool printDependencies) const override;)
private:
bool onIsUsed(GrSurfaceProxy*) const override;
void deleteOp(int index);
void deleteOps();
void handleInternalAllocationFailure() override;
void gatherProxyIntervals(GrResourceAllocator*) const override;
void recordOp(std::unique_ptr<GrOp>);
ExpectedOutcome onMakeClosed(const GrCaps&) override {
return (fRecordedOps.empty()) ?
ExpectedOutcome::kTargetUnchanged : ExpectedOutcome::kTargetDirty;
}
// The memory for the ops in 'fOpChains' is actually stored in 'fOpMemoryPool'
SkSTArray<2, std::unique_ptr<GrOp>, true> fRecordedOps;
typedef GrOpList INHERITED;
};
#endif