michael@0: /* michael@0: * Copyright 2013 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: #ifndef GrVertexArrayObj_DEFINED michael@0: #define GrVertexArrayObj_DEFINED michael@0: michael@0: #include "GrFakeRefObj.h" michael@0: michael@0: class GrVertexArrayObj : public GrFakeRefObj { michael@0: GR_DEFINE_CREATOR(GrVertexArrayObj); michael@0: michael@0: public: michael@0: GrVertexArrayObj() : GrFakeRefObj() {} michael@0: michael@0: typedef GrFakeRefObj INHERITED; michael@0: }; michael@0: #endif