3 CHROMIUM_enable_feature
7 GL_CHROMIUM_enable_feature
11 Last Modifed Date: August 11, 2011
15 OpenGL ES 2.0 is required.
19 This extension allows certain optional features to be turned on in
20 the Chromium OpenGL ES 2.0 implementation.
29 New Procedures and Functions
31 CommandBufferEnableCHROMIUM(const GLchar *feature)
33 <feature> is a null terminated string of the feature you wish to enable.
34 The requestable feature strings are as follows:
36 Note: If used this function MUST be called before any other GL commands
37 except GetString. Calling any other functions first will result in
40 pepper3d_allow_buffers_on_mulitple_targets
42 OpenGL ES 2.0 allows a single buffer to be bound to both the ARRAY_BUFFER
43 and ELEMENT_ARRAY_BUFFER bind points. By default Chromium does not allow
46 This feature is only provided for full OpenGL ES 2.0 compatibility. It is
47 expensive to use and should generally be avoided.
49 pepper3d_support_fixed_attribs
51 Turns on support for the type GL_FIXED. By default this feature is off in
54 This feature is only provided for full OpenGL ES 2.0 compatibility. It is
55 expensive to use and should generally be avoided.
67 8/11/2011 Documented the extension