2010-12-22 21:39:39 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2010-12-22 21:39:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2010-12-22 21:39:39 +00:00
|
|
|
#ifndef GrVertexBuffer_DEFINED
|
|
|
|
#define GrVertexBuffer_DEFINED
|
|
|
|
|
2011-02-14 16:51:21 +00:00
|
|
|
#include "GrGeometryBuffer.h"
|
2010-12-22 21:39:39 +00:00
|
|
|
|
2011-02-14 16:51:21 +00:00
|
|
|
class GrVertexBuffer : public GrGeometryBuffer {
|
2010-12-22 21:39:39 +00:00
|
|
|
protected:
|
2011-03-30 21:26:44 +00:00
|
|
|
GrVertexBuffer(GrGpu* gpu, size_t sizeInBytes, bool dynamic)
|
|
|
|
: INHERITED(gpu, sizeInBytes, dynamic) {}
|
2010-12-22 21:39:39 +00:00
|
|
|
private:
|
2011-02-14 16:51:21 +00:00
|
|
|
typedef GrGeometryBuffer INHERITED;
|
2010-12-22 21:39:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|