2009-09-03 00:47:49 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2009-09-03 00:47:49 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2012-10-11 19:23:03 +00:00
|
|
|
[builtinclass, uuid(f1a2fd3a-c6ac-4ee2-a700-5d285d5e3fff)]
|
2010-11-17 04:33:04 +00:00
|
|
|
interface nsIDOMWebGLRenderingContext : nsISupports
|
2009-09-03 00:47:49 +00:00
|
|
|
{
|
2010-12-16 20:49:54 +00:00
|
|
|
// get an underlying GL parameter, without any WebGL intervention.
|
|
|
|
// Most useful for querying GL_VENDOR/GL_RENDERER for identifying
|
|
|
|
// the underlying renderer to the user.
|
2012-10-11 19:23:03 +00:00
|
|
|
[noscript] DOMString mozGetUnderlyingParamString(in unsigned long pname);
|
2011-03-01 22:25:22 +00:00
|
|
|
};
|