blob: 018f3a97d9763b4eb65f65e1672d465f25b9e10e [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef WebGLVertexArrayObject_h
#define WebGLVertexArrayObject_h
#include "modules/webgl/WebGLVertexArrayObjectBase.h"
namespace blink {
class WebGLVertexArrayObject final : public WebGLVertexArrayObjectBase {
DEFINE_WRAPPERTYPEINFO();
public:
static WebGLVertexArrayObject* Create(WebGLRenderingContextBase*, VaoType);
private:
explicit WebGLVertexArrayObject(WebGLRenderingContextBase*, VaoType);
};
} // namespace blink
#endif // WebGLVertexArrayObject_h