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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureASTC.idl

Issue 1873323002: Have bindings layer assume and insist that all interface types are GCed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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
OLDNEW
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 [ 5 [
6 NoInterfaceObject, 6 NoInterfaceObject,
7 DoNotCheckConstants, 7 DoNotCheckConstants,
8 GarbageCollected,
9 SetWrapperReferenceFrom=canvas, 8 SetWrapperReferenceFrom=canvas,
10 ] interface WebGLCompressedTextureASTC { 9 ] interface WebGLCompressedTextureASTC {
11 /* Compressed Texture Formats */ 10 /* Compressed Texture Formats */
12 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0; 11 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0;
13 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1; 12 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1;
14 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2; 13 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2;
15 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3; 14 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3;
16 const unsigned long COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4; 15 const unsigned long COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4;
17 const unsigned long COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5; 16 const unsigned long COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5;
18 const unsigned long COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6; 17 const unsigned long COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6;
(...skipping 12 matching lines...) Expand all
31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5; 30 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5;
32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6; 31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6;
33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7; 32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7;
34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8; 33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8;
35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9; 34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9;
36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA; 35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA;
37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB; 36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB;
38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC; 37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC;
39 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD; 38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD;
40 }; 39 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698