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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLCompressedTextureETC.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 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698