|
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/. */ |
|
5 |
|
6 #ifndef WEBGL2CONTEXT_H_ |
|
7 #define WEBGL2CONTEXT_H_ |
|
8 |
|
9 #include "WebGLContext.h" |
|
10 |
|
11 namespace mozilla { |
|
12 |
|
13 class WebGL2Context |
|
14 : public WebGLContext |
|
15 { |
|
16 // ----------------------------------------------------------------------------- |
|
17 // PUBLIC |
|
18 public: |
|
19 |
|
20 // ------------------------------------------------------------------------- |
|
21 // DESTRUCTOR |
|
22 |
|
23 virtual ~WebGL2Context(); |
|
24 |
|
25 |
|
26 // ------------------------------------------------------------------------- |
|
27 // STATIC FUNCTIONS |
|
28 |
|
29 static bool IsSupported(); |
|
30 |
|
31 static WebGL2Context* Create(); |
|
32 |
|
33 |
|
34 // ------------------------------------------------------------------------- |
|
35 // IMPLEMENT WebGLContext |
|
36 |
|
37 virtual bool IsWebGL2() const MOZ_OVERRIDE |
|
38 { |
|
39 return true; |
|
40 } |
|
41 |
|
42 |
|
43 // ------------------------------------------------------------------------- |
|
44 // IMPLEMENT nsWrapperCache |
|
45 |
|
46 virtual JSObject* WrapObject(JSContext *cx) MOZ_OVERRIDE; |
|
47 |
|
48 |
|
49 // ----------------------------------------------------------------------------- |
|
50 // PRIVATE |
|
51 private: |
|
52 |
|
53 // ------------------------------------------------------------------------- |
|
54 // CONSTRUCTOR |
|
55 |
|
56 WebGL2Context(); |
|
57 |
|
58 |
|
59 }; |
|
60 |
|
61 } // namespace mozilla |
|
62 |
|
63 #endif |