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

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

Issue 1265703005: Implement the texture uploading of ASTC compression for WebGL(part II) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Clean and Remove unnecessary enum. Created 5 years, 4 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
(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 WillBeGarbageCollected,
Ken Russell (switch to Gerrit) 2015/08/18 00:05:03 The Oilpan switch has been thrown for the WebGL mo
9 SetWrapperReferenceFrom=canvas,
10 ] interface WebGLCompressedTextureASTC {
Ken Russell (switch to Gerrit) 2015/08/18 00:05:03 Note that the API for this extension was changed a
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

Powered by Google App Engine
This is Rietveld 408576698