WebGL
Khronos
 

WebGL EXT_frag_depth Khronos Ratified Extension Specification

Name

EXT_frag_depth

Contact

WebGL working group (public_webgl 'at' khronos.org)

Contributors

Florian Boesch (pyalot 'at' gmail.com)

Members of the WebGL working group

Version

Last modified date: May 29, 2015
Revision: 5

Number

WebGL extension #16

Dependencies

Written against the WebGL API 1.0 specification.

Promoted to core and no longer available as an extension in WebGL API 2.0 specification. Requires GLSL #version 300 es.

Overview

This extension exposes the EXT_frag_depth functionality to WebGL.

There are no WebGL-specific behavioral changes.

Consult the above extension for documentation, issues and new functions and enumerants.

When this extension is enabled:

IDL

    [Exposed=(Window,Worker), LegacyNoInterfaceObject]
    interface EXT_frag_depth {
    };
  

Sample Code

    void main(){
        gl_FragColor = vec4(1.0, 0.0, 1.0, 1.0);
        gl_FragDepthEXT = 0.5;
    }
    

Revision History

Revision 1, 2012/11/22

Revision 2, 2012/12/17

Revision 3, 2014/05/13

Revision 4, 2014/07/15

Revision 5, 2015/05/29