| OLD | NEW |
| 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. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 OESTextureFloatLinearName, | 22 OESTextureFloatLinearName, |
| 23 OESTextureFloatName, | 23 OESTextureFloatName, |
| 24 OESTextureHalfFloatLinearName, | 24 OESTextureHalfFloatLinearName, |
| 25 OESTextureHalfFloatName, | 25 OESTextureHalfFloatName, |
| 26 OESVertexArrayObjectName, | 26 OESVertexArrayObjectName, |
| 27 WebGLCompressedTextureASTCName, | 27 WebGLCompressedTextureASTCName, |
| 28 WebGLCompressedTextureATCName, | 28 WebGLCompressedTextureATCName, |
| 29 WebGLCompressedTextureETC1Name, | 29 WebGLCompressedTextureETC1Name, |
| 30 WebGLCompressedTexturePVRTCName, | 30 WebGLCompressedTexturePVRTCName, |
| 31 WebGLCompressedTextureS3TCName, | 31 WebGLCompressedTextureS3TCName, |
| 32 WebGLCompressedTextureS3TCsRGBName, |
| 32 WebGLDebugRendererInfoName, | 33 WebGLDebugRendererInfoName, |
| 33 WebGLDebugShadersName, | 34 WebGLDebugShadersName, |
| 34 WebGLDepthTextureName, | 35 WebGLDepthTextureName, |
| 35 WebGLDrawBuffersName, | 36 WebGLDrawBuffersName, |
| 36 WebGLLoseContextName, | 37 WebGLLoseContextName, |
| 37 WebGLExtensionNameCount, // Must be the last entry | 38 WebGLExtensionNameCount, // Must be the last entry |
| 38 }; | 39 }; |
| 39 } // namespace blink | 40 } // namespace blink |
| 40 | 41 |
| 41 #endif // WebGLExtensionName_h | 42 #endif // WebGLExtensionName_h |
| OLD | NEW |