Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_enable_feature.txt

Issue 7623001: Rename and document glCommandBufferEnableCHROMIUM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix stuff Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/gpu/renderer_gl_context.cc ('k') | gpu/GLES2/gl2ext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Name
2
3 CHROMIUM_enable_feature
4
5 Name Strings
6
7 GL_CHROMIUM_enable_feature
8
9 Version
10
11 Last Modifed Date: August 11, 2011
12
13 Dependencies
14
15 OpenGL ES 2.0 is required.
16
17 Overview
18
19 This extension allows certain optional features to be turned on in
20 the Chromium OpenGL ES 2.0 implementation.
21
22 Issues
23
24
25 New Tokens
26
27 None
28
29 New Procedures and Functions
30
31 CommandBufferEnableCHROMIUM(const GLchar *feature)
32
33 <feature> is a null terminated string of the feature you wish to enable.
34 The requestable feature strings are as follows:
35
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
38 undefined behavior.
39
40 pepper3d_allow_buffers_on_mulitple_targets
41
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
44 this.
45
46 This feature is only provided for full OpenGL ES 2.0 compatibility. It is
47 expensive to use and should generally be avoided.
48
49 pepper3d_support_fixed_attribs
50
51 Turns on support for the type GL_FIXED. By default this feature is off in
52 Chromium.
53
54 This feature is only provided for full OpenGL ES 2.0 compatibility. It is
55 expensive to use and should generally be avoided.
56
57 Errors
58
59 None.
60
61 New State
62
63 None.
64
65 Revision History
66
67 8/11/2011 Documented the extension
OLDNEW
« no previous file with comments | « content/renderer/gpu/renderer_gl_context.cc ('k') | gpu/GLES2/gl2ext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698