Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / dom / canvas / WebGLVertexArrayFake.h
blob49e4fe6d6ae28721b4f407db26f9aaa7268481be
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 WEBGLVERTEXARRAYFAKE_H_
7 #define WEBGLVERTEXARRAYFAKE_H_
9 #include "WebGLVertexArray.h"
11 namespace mozilla {
13 class WebGLVertexArrayFake MOZ_FINAL
14 : public WebGLVertexArray
16 public:
17 virtual void BindVertexArrayImpl() MOZ_OVERRIDE;
18 virtual void DeleteImpl() MOZ_OVERRIDE { };
19 virtual void GenVertexArray() MOZ_OVERRIDE { };
21 private:
22 WebGLVertexArrayFake(WebGLContext *context)
23 : WebGLVertexArray(context)
24 { }
26 ~WebGLVertexArrayFake() {
27 DeleteOnce();
30 friend class WebGLVertexArray;
33 } // namespace mozilla
35 #endif