2013-06-10 13:00:35 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef WEBGLACTIVEINFO_H_
|
|
|
|
#define WEBGLACTIVEINFO_H_
|
|
|
|
|
|
|
|
#include "WebGLTypes.h"
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
2013-08-17 15:50:18 -07:00
|
|
|
|
|
|
|
struct JSContext;
|
|
|
|
class JSObject;
|
|
|
|
namespace JS {
|
|
|
|
template <typename T> class Handle;
|
|
|
|
}
|
2013-06-10 13:00:35 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class WebGLActiveInfo MOZ_FINAL
|
|
|
|
: public nsISupports
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WebGLActiveInfo(WebGLint size, WebGLenum type, const nsACString& name) :
|
|
|
|
mSize(size),
|
|
|
|
mType(type),
|
|
|
|
mName(NS_ConvertASCIItoUTF16(name))
|
|
|
|
{}
|
|
|
|
|
|
|
|
// WebIDL attributes
|
|
|
|
|
|
|
|
WebGLint Size() const {
|
|
|
|
return mSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLenum Type() const {
|
|
|
|
return mType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetName(nsString& retval) const {
|
|
|
|
retval = mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject* WrapObject(JSContext *cx, JS::Handle<JSObject*> scope);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
protected:
|
|
|
|
WebGLint mSize;
|
|
|
|
WebGLenum mType;
|
|
|
|
nsString mName;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|