| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebGLExtensionName_h |
| 6 #define WebGLExtensionName_h |
| 7 |
| 8 namespace WebCore { |
| 9 |
| 10 // Extension names are needed to properly wrap instances in JavaScript objects. |
| 11 enum WebGLExtensionName { |
| 12 ANGLEInstancedArraysName, |
| 13 EXTFragDepthName, |
| 14 EXTTextureFilterAnisotropicName, |
| 15 OESElementIndexUintName, |
| 16 OESStandardDerivativesName, |
| 17 OESTextureFloatLinearName, |
| 18 OESTextureFloatName, |
| 19 OESTextureHalfFloatLinearName, |
| 20 OESTextureHalfFloatName, |
| 21 OESVertexArrayObjectName, |
| 22 WebGLCompressedTextureATCName, |
| 23 WebGLCompressedTexturePVRTCName, |
| 24 WebGLCompressedTextureS3TCName, |
| 25 WebGLDebugRendererInfoName, |
| 26 WebGLDebugShadersName, |
| 27 WebGLDepthTextureName, |
| 28 WebGLDrawBuffersName, |
| 29 WebGLLoseContextName, |
| 30 WebGLExtensionNameCount, // Must be the last entry |
| 31 }; |
| 32 |
| 33 } |
| 34 |
| 35 #endif // WebGLExtensionName_h |
| OLD | NEW |