blob: a2bd5a1b4d18b1258da41c9e55853dc111b17108 [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, bool cpuBacked)
: INHERITED(gpu, isWrapped, sizeInBytes, dynamic, cpuBacked) {}
private:
typedef GrGeometryBuffer INHERITED;
};
#endif