Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Side by Side Diff: modules/webgl/WebGLCompressedTextureASTC.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « modules/webgl/WebGLBuffer.idl ('k') | modules/webgl/WebGLCompressedTextureATC.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 [
6 NoInterfaceObject,
7 DoNotCheckConstants,
8 GarbageCollected,
9 SetWrapperReferenceFrom=canvas,
10 ] interface WebGLCompressedTextureASTC {
11 /* Compressed Texture Formats */
12 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0;
13 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1;
14 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2;
15 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3;
16 const unsigned long COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4;
17 const unsigned long COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5;
18 const unsigned long COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6;
19 const unsigned long COMPRESSED_RGBA_ASTC_8x8_KHR = 0x93B7;
20 const unsigned long COMPRESSED_RGBA_ASTC_10x5_KHR = 0x93B8;
21 const unsigned long COMPRESSED_RGBA_ASTC_10x6_KHR = 0x93B9;
22 const unsigned long COMPRESSED_RGBA_ASTC_10x8_KHR = 0x93BA;
23 const unsigned long COMPRESSED_RGBA_ASTC_10x10_KHR = 0x93BB;
24 const unsigned long COMPRESSED_RGBA_ASTC_12x10_KHR = 0x93BC;
25 const unsigned long COMPRESSED_RGBA_ASTC_12x12_KHR = 0x93BD;
26 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0;
27 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR = 0x93D1;
28 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR = 0x93D2;
29 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR = 0x93D3;
30 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR = 0x93D4;
31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5;
32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6;
33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7;
34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8;
35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9;
36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA;
37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB;
38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC;
39 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD;
40 };
OLDNEW
« no previous file with comments | « modules/webgl/WebGLBuffer.idl ('k') | modules/webgl/WebGLCompressedTextureATC.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698