| 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 18 matching lines...) Expand all Loading... |
| 29 WebGLCompressedTextureATCName, | 29 WebGLCompressedTextureATCName, |
| 30 WebGLCompressedTextureETCName, | 30 WebGLCompressedTextureETCName, |
| 31 WebGLCompressedTextureETC1Name, | 31 WebGLCompressedTextureETC1Name, |
| 32 WebGLCompressedTexturePVRTCName, | 32 WebGLCompressedTexturePVRTCName, |
| 33 WebGLCompressedTextureS3TCName, | 33 WebGLCompressedTextureS3TCName, |
| 34 WebGLCompressedTextureS3TCsRGBName, | 34 WebGLCompressedTextureS3TCsRGBName, |
| 35 WebGLDebugRendererInfoName, | 35 WebGLDebugRendererInfoName, |
| 36 WebGLDebugShadersName, | 36 WebGLDebugShadersName, |
| 37 WebGLDepthTextureName, | 37 WebGLDepthTextureName, |
| 38 WebGLDrawBuffersName, | 38 WebGLDrawBuffersName, |
| 39 WebGLGetBufferSubDataAsyncName, |
| 39 WebGLLoseContextName, | 40 WebGLLoseContextName, |
| 40 WebGLExtensionNameCount, // Must be the last entry | 41 WebGLExtensionNameCount, // Must be the last entry |
| 41 }; | 42 }; |
| 42 } // namespace blink | 43 } // namespace blink |
| 43 | 44 |
| 44 #endif // WebGLExtensionName_h | 45 #endif // WebGLExtensionName_h |
| OLD | NEW |