2013-03-01 15:36:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GrVertexArrayObj_DEFINED
|
|
|
|
#define GrVertexArrayObj_DEFINED
|
|
|
|
|
|
|
|
#include "GrFakeRefObj.h"
|
|
|
|
|
|
|
|
class GrVertexArrayObj : public GrFakeRefObj {
|
2016-09-27 13:34:10 +00:00
|
|
|
GR_DEFINE_CREATOR(GrVertexArrayObj)
|
2013-03-01 15:36:02 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
GrVertexArrayObj() : GrFakeRefObj() {}
|
|
|
|
|
|
|
|
typedef GrFakeRefObj INHERITED;
|
|
|
|
};
|
|
|
|
#endif
|