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

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

Issue 2676663006: Remove SetWrapperReferenceTo and SetWrapperReferenceFrom (Closed)
Patch Set: Rebase on master Created 3 years, 10 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 DependentLifetime,
6 NoInterfaceObject, 7 NoInterfaceObject,
7 DoNotCheckConstants, 8 DoNotCheckConstants,
8 SetWrapperReferenceFrom=canvas,
9 ] interface WebGLCompressedTextureASTC { 9 ] interface WebGLCompressedTextureASTC {
10 /* Compressed Texture Formats */ 10 /* Compressed Texture Formats */
11 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0; 11 const unsigned long COMPRESSED_RGBA_ASTC_4x4_KHR = 0x93B0;
12 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1; 12 const unsigned long COMPRESSED_RGBA_ASTC_5x4_KHR = 0x93B1;
13 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2; 13 const unsigned long COMPRESSED_RGBA_ASTC_5x5_KHR = 0x93B2;
14 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3; 14 const unsigned long COMPRESSED_RGBA_ASTC_6x5_KHR = 0x93B3;
15 const unsigned long COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4; 15 const unsigned long COMPRESSED_RGBA_ASTC_6x6_KHR = 0x93B4;
16 const unsigned long COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5; 16 const unsigned long COMPRESSED_RGBA_ASTC_8x5_KHR = 0x93B5;
17 const unsigned long COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6; 17 const unsigned long COMPRESSED_RGBA_ASTC_8x6_KHR = 0x93B6;
18 const unsigned long COMPRESSED_RGBA_ASTC_8x8_KHR = 0x93B7; 18 const unsigned long COMPRESSED_RGBA_ASTC_8x8_KHR = 0x93B7;
(...skipping 11 matching lines...) Expand all
30 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5; 30 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR = 0x93D5;
31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6; 31 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR = 0x93D6;
32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7; 32 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR = 0x93D7;
33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8; 33 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR = 0x93D8;
34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9; 34 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR = 0x93D9;
35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA; 35 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR = 0x93DA;
36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB; 36 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR = 0x93DB;
37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC; 37 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR = 0x93DC;
38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD; 38 const unsigned long COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD;
39 }; 39 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698