зеркало из https://github.com/mozilla/pjs.git
b=622956; [webgl] add stub extension mechanism, fixes extension tests; r=bjacob
This commit is contained in:
Родитель
e356706d8e
Коммит
a83d8031c7
|
@ -4201,3 +4201,10 @@ int mozilla::GetWebGLTexelFormat(GLenum format, GLenum type)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
WebGLContext::GetExtension(const nsAString& aName, nsISupports **retval)
|
||||
{
|
||||
*retval = nsnull;
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
|
@ -834,4 +834,7 @@ interface nsIDOMWebGLRenderingContext : nsISupports
|
|||
// Most useful for querying GL_VENDOR/GL_RENDERER for identifying
|
||||
// the underlying renderer to the user.
|
||||
[noscript] DOMString mozGetUnderlyingParamString(in WebGLenum pname);
|
||||
|
||||
// extensions
|
||||
nsISupports getExtension(in DOMString name);
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче