WebGL
Khronos
 

WebGL WEBGL_debug_renderer_info Khronos Ratified Extension Specification

Name

WEBGL_debug_renderer_info

Contact

zmo@chromium.org

Contributors

Members of the WebGL working group

Version

Last modified date: July 15, 2014
Revision: 8

Number

WebGL extension #6

Dependencies

Written against the WebGL API 1.0 specification.

Overview

WebGL implementations might mask the RENDERER and VENDOR strings of the underlying graphics driver for privacy reasons. This extension exposes new tokens to query this information in a guaranteed manner for debugging purposes.

IDL

[Exposed=(Window,Worker), LegacyNoInterfaceObject]
interface WEBGL_debug_renderer_info {

      const GLenum UNMASKED_VENDOR_WEBGL            = 0x9245;
      const GLenum UNMASKED_RENDERER_WEBGL          = 0x9246;

};
  

New Tokens

any getParameter(GLenum pname)
Two new enums UNMASKED_VENDOR_WEBGL and UNMASKED_RENDERER_WEBGL are accepted by pname parameter in getParameter().
pnamereturned type
UNMASKED_VENDOR_WEBGLDOMString
UNMASKED_RENDERER_WEBGLDOMString

The following pname arguments return a string describing some aspect of the underlying graphics driver.
UNMASKED_VENDOR_WEBGLReturn the VENDOR string of the underlying graphics driver.
UNMASKED_RENDERER_WEBGLReturn the RENDERER string of the underlying graphics driver.

Issues

1) What enum values should be used for UNMASKED_VENDOR_WEBGL and UNMASKED_RENDERER_WEBGL?

2) Should this extension be made available on ordinary web pages?

Revision History

Revision 1, 2011/10/03

Revision 2, 2011/10/12

Revision 3, 2011/10/18

Revision 4, 2011/12/07

Revision 5, 2012/01/03

Revision 6, 2013/05/15

Revision 7, 2014/01/28

Revision 8, 2014/07/15