Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
[gecko.git] / dom / canvas / WebGLVertexArrayGL.h
blobde839eaffec2d1fb2fecb2c8b3aea6a781997c5a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef WEBGLVERTEXARRAYGL_H_
7 #define WEBGLVERTEXARRAYGL_H_
9 #include "WebGLVertexArray.h"
11 namespace mozilla {
13 class WebGLVertexArrayGL MOZ_FINAL
14 : public WebGLVertexArray
16 public:
17 virtual void DeleteImpl() MOZ_OVERRIDE;
18 virtual void BindVertexArrayImpl() MOZ_OVERRIDE;
19 virtual void GenVertexArray() MOZ_OVERRIDE;
21 private:
22 WebGLVertexArrayGL(WebGLContext* context)
23 : WebGLVertexArray(context)
24 { }
26 ~WebGLVertexArrayGL() {
27 DeleteOnce();
30 friend class WebGLVertexArray;
33 } // namespace mozilla
35 #endif