| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 [ | 5 [ |
| 6 DependentLifetime, |
| 6 NoInterfaceObject, | 7 NoInterfaceObject, |
| 7 DoNotCheckConstants, | 8 DoNotCheckConstants, |
| 8 SetWrapperReferenceFrom=canvas, | |
| 9 ] interface WebGLCompressedTextureETC { | 9 ] interface WebGLCompressedTextureETC { |
| 10 /* Compressed Texture Format */ | 10 /* Compressed Texture Format */ |
| 11 const unsigned long COMPRESSED_R11_EAC = 0x9270; | 11 const unsigned long COMPRESSED_R11_EAC = 0x9270; |
| 12 const unsigned long COMPRESSED_SIGNED_R11_EAC = 0x9271; | 12 const unsigned long COMPRESSED_SIGNED_R11_EAC = 0x9271; |
| 13 const unsigned long COMPRESSED_RG11_EAC = 0x9272; | 13 const unsigned long COMPRESSED_RG11_EAC = 0x9272; |
| 14 const unsigned long COMPRESSED_SIGNED_RG11_EAC = 0x9273; | 14 const unsigned long COMPRESSED_SIGNED_RG11_EAC = 0x9273; |
| 15 const unsigned long COMPRESSED_RGB8_ETC2 = 0x9274; | 15 const unsigned long COMPRESSED_RGB8_ETC2 = 0x9274; |
| 16 const unsigned long COMPRESSED_SRGB8_ETC2 = 0x9275; | 16 const unsigned long COMPRESSED_SRGB8_ETC2 = 0x9275; |
| 17 const unsigned long COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276; | 17 const unsigned long COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9276; |
| 18 const unsigned long COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277; | 18 const unsigned long COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 = 0x9277; |
| 19 const unsigned long COMPRESSED_RGBA8_ETC2_EAC = 0x9278; | 19 const unsigned long COMPRESSED_RGBA8_ETC2_EAC = 0x9278; |
| 20 const unsigned long COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279; | 20 const unsigned long COMPRESSED_SRGB8_ALPHA8_ETC2_EAC = 0x9279; |
| 21 }; | 21 }; |
| OLD | NEW |