OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 // https://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_as
tc/ |
| 6 |
5 [ | 7 [ |
6 DependentLifetime, | 8 DependentLifetime, |
7 NoInterfaceObject, | 9 NoInterfaceObject, |
8 DoNotCheckConstants, | 10 DoNotCheckConstants, |
9 ] interface WebGLCompressedTextureASTC { | 11 ] interface WebGLCompressedTextureASTC { |
10 /* Compressed Texture Formats */ | 12 /* Compressed Texture Formats */ |
11 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0; | 13 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0; |
12 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1; | 14 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1; |
13 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2; | 15 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2; |
14 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3; | 16 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3; |
(...skipping 15 matching lines...) Expand all Loading... |
30 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5; | 32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5; |
31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6; | 33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6; |
32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7; | 34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7; |
33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8; | 35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8; |
34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9; | 36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9; |
35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA; | 37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA; |
36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB; | 38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB; |
37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC; | 39 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC; |
38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD; | 40 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD; |
39 }; | 41 }; |
OLD | NEW |