blob: b53cbf00ae85882b107a079b8b8508cf152b9ecb [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrVertexBuffer_DEFINED
#define GrVertexBuffer_DEFINED
#include "GrGeometryBuffer.h"
class GrVertexBuffer : public GrGeometryBuffer {
protected:
GrVertexBuffer(GrGpu* gpu, bool isWrapped, size_t sizeInBytes, bool dynamic)
: INHERITED(gpu, isWrapped, sizeInBytes, dynamic) {}
private:
typedef GrGeometryBuffer INHERITED;
};
#endif