2010-12-22 21:39:39 +00:00
|
|
|
/*
|
2011-03-10 14:51:57 +00:00
|
|
|
Copyright 2011 Google Inc.
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GrInOrderDrawBuffer_DEFINED
|
|
|
|
#define GrInOrderDrawBuffer_DEFINED
|
|
|
|
|
|
|
|
#include "GrDrawTarget.h"
|
|
|
|
#include "GrAllocPool.h"
|
|
|
|
#include "GrAllocator.h"
|
|
|
|
#include "GrClip.h"
|
|
|
|
|
|
|
|
class GrVertexBufferAllocPool;
|
2011-02-14 16:51:21 +00:00
|
|
|
class GrIndexBufferAllocPool;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 rendertargets are associated in the GrGpu object that the buffer is
|
|
|
|
* played back into. The buffer requires VB and IB pools to store geometry.
|
|
|
|
*/
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
class GrInOrderDrawBuffer : public GrDrawTarget {
|
|
|
|
public:
|
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
/**
|
|
|
|
* Creates a GrInOrderDrawBuffer
|
|
|
|
*
|
|
|
|
* @param vertexPool pool where vertices for queued draws will be saved when
|
|
|
|
* the vertex source is either reserved or array.
|
|
|
|
* @param indexPool pool where indices for queued draws will be saved when
|
|
|
|
* the index source is either reserved or array.
|
|
|
|
*/
|
2011-02-14 16:51:21 +00:00
|
|
|
GrInOrderDrawBuffer(GrVertexBufferAllocPool* vertexPool,
|
|
|
|
GrIndexBufferAllocPool* indexPool);
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
virtual ~GrInOrderDrawBuffer();
|
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
/**
|
|
|
|
* Copies the draw state and clip from target to this draw buffer.
|
|
|
|
*
|
|
|
|
* @param target the target whose clip and state should be copied.
|
|
|
|
*/
|
2010-12-22 21:39:39 +00:00
|
|
|
void initializeDrawStateAndClip(const GrDrawTarget& target);
|
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
/**
|
|
|
|
* Provides the buffer with an index buffer that can be used for quad rendering.
|
|
|
|
* The buffer may be able to batch consecutive drawRects if this is provided.
|
|
|
|
* @param indexBuffer index buffer with quad indices.
|
|
|
|
*/
|
|
|
|
void setQuadIndexBuffer(const GrIndexBuffer* indexBuffer);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Empties the draw buffer of any queued up draws.
|
|
|
|
*/
|
|
|
|
void reset();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* plays the queued up draws to another target. Does not empty this buffer so
|
|
|
|
* that it can be played back multiple times.
|
|
|
|
* @param target the target to receive the playback
|
|
|
|
*/
|
|
|
|
void playback(GrDrawTarget* target);
|
|
|
|
|
|
|
|
// overrides from GrDrawTarget
|
2011-02-22 20:34:01 +00:00
|
|
|
virtual void drawIndexed(GrPrimitiveType primitiveType,
|
2011-02-14 16:51:21 +00:00
|
|
|
int startVertex,
|
|
|
|
int startIndex,
|
|
|
|
int vertexCount,
|
|
|
|
int indexCount);
|
2011-02-22 20:34:01 +00:00
|
|
|
virtual void drawNonIndexed(GrPrimitiveType primitiveType,
|
2011-02-14 16:51:21 +00:00
|
|
|
int startVertex,
|
|
|
|
int vertexCount);
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
virtual void drawRect(const GrRect& rect,
|
|
|
|
const GrMatrix* matrix = NULL,
|
|
|
|
int stageEnableMask = 0,
|
|
|
|
const GrRect* srcRects[] = NULL,
|
|
|
|
const GrMatrix* srcMatrices[] = NULL);
|
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
virtual bool geometryHints(GrVertexLayout vertexLayout,
|
2011-02-14 16:51:21 +00:00
|
|
|
int* vertexCount,
|
|
|
|
int* indexCount) const;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
struct Draw {
|
2011-02-22 20:34:01 +00:00
|
|
|
GrPrimitiveType fPrimitiveType;
|
2011-02-14 16:51:21 +00:00
|
|
|
int fStartVertex;
|
|
|
|
int fStartIndex;
|
|
|
|
int fVertexCount;
|
|
|
|
int fIndexCount;
|
|
|
|
bool fStateChanged;
|
|
|
|
bool fClipChanged;
|
|
|
|
GrVertexLayout fVertexLayout;
|
|
|
|
const GrVertexBuffer* fVertexBuffer;
|
|
|
|
const GrIndexBuffer* fIndexBuffer;
|
2010-12-22 21:39:39 +00:00
|
|
|
};
|
|
|
|
|
2011-04-12 15:40:00 +00:00
|
|
|
virtual bool onAcquireGeometry(GrVertexLayout vertexLayout,
|
|
|
|
void** vertices,
|
|
|
|
void** indices);
|
|
|
|
virtual void onReleaseGeometry();
|
2011-02-16 16:12:19 +00:00
|
|
|
virtual void clipWillBeSet(const GrClip& newClip);
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-04-12 15:40:00 +00:00
|
|
|
virtual void onSetVertexSourceToArray(const void* vertexArray,
|
|
|
|
int vertexCount);
|
2011-02-14 16:51:21 +00:00
|
|
|
|
2011-04-12 15:40:00 +00:00
|
|
|
virtual void onSetIndexSourceToArray(const void* indexArray,
|
|
|
|
int indexCount);
|
2011-02-14 16:51:21 +00:00
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
bool needsNewState() const;
|
|
|
|
bool needsNewClip() const;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
void pushState();
|
|
|
|
void pushClip();
|
2010-12-22 21:39:39 +00:00
|
|
|
|
|
|
|
GrTAllocator<Draw> fDraws;
|
|
|
|
GrTAllocator<SavedDrawState> fStates;
|
|
|
|
|
|
|
|
GrTAllocator<GrClip> fClips;
|
2011-02-16 16:12:19 +00:00
|
|
|
bool fClipSet;
|
|
|
|
|
|
|
|
GrVertexLayout fLastRectVertexLayout;
|
|
|
|
const GrIndexBuffer* fQuadIndexBuffer;
|
|
|
|
int fMaxQuads;
|
|
|
|
int fCurrQuad;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-14 16:51:21 +00:00
|
|
|
GrVertexBufferAllocPool& fVertexPool;
|
|
|
|
const GrVertexBuffer* fCurrPoolVertexBuffer;
|
|
|
|
int fCurrPoolStartVertex;
|
|
|
|
|
|
|
|
GrIndexBufferAllocPool& fIndexPool;
|
|
|
|
const GrIndexBuffer* fCurrPoolIndexBuffer;
|
|
|
|
int fCurrPoolStartIndex;
|
|
|
|
|
|
|
|
// caller may conservatively over reserve vertices / indices.
|
2010-12-22 21:39:39 +00:00
|
|
|
// we release unused space back to allocator if possible
|
|
|
|
size_t fReservedVertexBytes;
|
|
|
|
size_t fReservedIndexBytes;
|
|
|
|
size_t fUsedReservedVertexBytes;
|
|
|
|
size_t fUsedReservedIndexBytes;
|
2011-04-20 15:47:04 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
kDrawPreallocCnt = 8,
|
|
|
|
kStatePreallocCnt = 8,
|
|
|
|
kClipPreallocCnt = 8,
|
|
|
|
};
|
|
|
|
|
|
|
|
GrAlignedSTStorage<kDrawPreallocCnt, Draw> fDrawStorage;
|
|
|
|
GrAlignedSTStorage<kStatePreallocCnt, SavedDrawState> fStateStorage;
|
|
|
|
GrAlignedSTStorage<kClipPreallocCnt, GrClip> fClipStorage;
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-16 16:12:19 +00:00
|
|
|
typedef GrDrawTarget INHERITED;
|
2010-12-22 21:39:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|