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