|
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 WEBGLACTIVEINFO_H_ |
|
7 #define WEBGLACTIVEINFO_H_ |
|
8 |
|
9 #include "WebGLObjectModel.h" |
|
10 #include "nsString.h" |
|
11 #include "js/TypeDecls.h" |
|
12 |
|
13 namespace mozilla { |
|
14 |
|
15 class WebGLActiveInfo MOZ_FINAL |
|
16 { |
|
17 public: |
|
18 WebGLActiveInfo(GLint size, GLenum type, const nsACString& name) : |
|
19 mSize(size), |
|
20 mType(type), |
|
21 mName(NS_ConvertASCIItoUTF16(name)) |
|
22 {} |
|
23 |
|
24 // WebIDL attributes |
|
25 |
|
26 GLint Size() const { |
|
27 return mSize; |
|
28 } |
|
29 |
|
30 GLenum Type() const { |
|
31 return mType; |
|
32 } |
|
33 |
|
34 void GetName(nsString& retval) const { |
|
35 retval = mName; |
|
36 } |
|
37 |
|
38 JSObject* WrapObject(JSContext *cx); |
|
39 |
|
40 NS_INLINE_DECL_REFCOUNTING(WebGLActiveInfo) |
|
41 |
|
42 private: |
|
43 // Private destructor, to discourage deletion outside of Release(): |
|
44 ~WebGLActiveInfo() |
|
45 { |
|
46 } |
|
47 |
|
48 GLint mSize; |
|
49 GLenum mType; |
|
50 nsString mName; |
|
51 }; |
|
52 |
|
53 } // namespace mozilla |
|
54 |
|
55 #endif |