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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLExtensionName.h

Issue 2437233002: Implement EXT_disjoint_timer_query_webgl2 (Closed)
Patch Set: fix logic again Created 4 years, 1 month 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebGLExtensionName_h 5 #ifndef WebGLExtensionName_h
6 #define WebGLExtensionName_h 6 #define WebGLExtensionName_h
7 7
8 namespace blink { 8 namespace blink {
9 9
10 // Extension names are needed to properly wrap instances in JavaScript objects. 10 // Extension names are needed to properly wrap instances in JavaScript objects.
11 enum WebGLExtensionName { 11 enum WebGLExtensionName {
12 ANGLEInstancedArraysName, 12 ANGLEInstancedArraysName,
13 EXTBlendMinMaxName, 13 EXTBlendMinMaxName,
14 EXTColorBufferFloatName, 14 EXTColorBufferFloatName,
15 EXTDisjointTimerQueryName, 15 EXTDisjointTimerQueryName,
16 EXTDisjointTimerQueryWebGL2Name,
16 EXTFragDepthName, 17 EXTFragDepthName,
17 EXTShaderTextureLODName, 18 EXTShaderTextureLODName,
18 EXTsRGBName, 19 EXTsRGBName,
19 EXTTextureFilterAnisotropicName, 20 EXTTextureFilterAnisotropicName,
20 OESElementIndexUintName, 21 OESElementIndexUintName,
21 OESStandardDerivativesName, 22 OESStandardDerivativesName,
22 OESTextureFloatLinearName, 23 OESTextureFloatLinearName,
23 OESTextureFloatName, 24 OESTextureFloatName,
24 OESTextureHalfFloatLinearName, 25 OESTextureHalfFloatLinearName,
25 OESTextureHalfFloatName, 26 OESTextureHalfFloatName,
26 OESVertexArrayObjectName, 27 OESVertexArrayObjectName,
27 WebGLCompressedTextureASTCName, 28 WebGLCompressedTextureASTCName,
28 WebGLCompressedTextureATCName, 29 WebGLCompressedTextureATCName,
29 WebGLCompressedTextureETCName, 30 WebGLCompressedTextureETCName,
30 WebGLCompressedTextureETC1Name, 31 WebGLCompressedTextureETC1Name,
31 WebGLCompressedTexturePVRTCName, 32 WebGLCompressedTexturePVRTCName,
32 WebGLCompressedTextureS3TCName, 33 WebGLCompressedTextureS3TCName,
33 WebGLCompressedTextureS3TCsRGBName, 34 WebGLCompressedTextureS3TCsRGBName,
34 WebGLDebugRendererInfoName, 35 WebGLDebugRendererInfoName,
35 WebGLDebugShadersName, 36 WebGLDebugShadersName,
36 WebGLDepthTextureName, 37 WebGLDepthTextureName,
37 WebGLDrawBuffersName, 38 WebGLDrawBuffersName,
38 WebGLLoseContextName, 39 WebGLLoseContextName,
39 WebGLExtensionNameCount, // Must be the last entry 40 WebGLExtensionNameCount, // Must be the last entry
40 }; 41 };
41 } // namespace blink 42 } // namespace blink
42 43
43 #endif // WebGLExtensionName_h 44 #endif // WebGLExtensionName_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698