blob: ce1638c7fc5b9db1c553b1714d0b3e02931e65b4 [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 gr_instanced_GLInstancedRendering_DEFINED
#define gr_instanced_GLInstancedRendering_DEFINED
#include "GrCaps.h"
#include "gl/GrGLBuffer.h"
#include "instanced/InstancedRendering.h"
class GrGLCaps;
class GrGLGpu;
#define GR_GL_LOG_INSTANCED_BATCHES 0
namespace gr_instanced {
class GLInstancedRendering final : public InstancedRendering {
public:
GLInstancedRendering(GrGLGpu*);
~GLInstancedRendering() override;
private:
/**
* Called by GrGLCaps to determine the level of support this class can offer for instanced
* rendering on the current platform.
*/
static GrCaps::InstancedSupport CheckSupport(const GrGLCaps&);
GrGLGpu* glGpu() const;
Batch* createBatch() override;
void onBeginFlush(GrResourceProvider*) override;
void onDraw(const GrPipeline&, const InstanceProcessor&, const Batch*) override;
void onEndFlush() override;
void onResetGpuResources(ResetType) override;
void flushInstanceAttribs(int baseInstance);
struct GLDrawCmdInfo {
IndexRange fGeometry;
int fInstanceCount;
};
GrGLuint fVertexArrayID;
SkAutoTUnref<GrBuffer> fInstanceBuffer;
SkAutoTUnref<GrBuffer> fDrawIndirectBuffer;
SkAutoSTMalloc<1024, GLDrawCmdInfo> fGLDrawCmdsInfo;
uint32_t fInstanceAttribsBufferUniqueId;
int fInstanceAttribsBaseInstance;
class GLBatch;
friend class ::GrGLCaps; // For CheckSupport.
typedef InstancedRendering INHERITED;
};
}
#endif