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

Side by Side Diff: sdk/lib/web_gl/dart2js/web_gl_dart2js.dart

Issue 2152393002: Update test status for webgl extension tests, fix one typo in extension name (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * 3D programming in the browser. 2 * 3D programming in the browser.
3 */ 3 */
4 library dart.dom.web_gl; 4 library dart.dom.web_gl;
5 5
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'dart:_internal'; 7 import 'dart:_internal';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:html_common'; 9 import 'dart:html_common';
10 import 'dart:_native_typed_data'; 10 import 'dart:_native_typed_data';
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 static const int SRGB_EXT = 0x8C40; 840 static const int SRGB_EXT = 0x8C40;
841 } 841 }
842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 842 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
843 // for details. All rights reserved. Use of this source code is governed by a 843 // for details. All rights reserved. Use of this source code is governed by a
844 // BSD-style license that can be found in the LICENSE file. 844 // BSD-style license that can be found in the LICENSE file.
845 845
846 846
847 @DocsEditable() 847 @DocsEditable()
848 @DomName('EXTBlendMinMax') 848 @DomName('EXTBlendMinMax')
849 @Experimental() // untriaged 849 @Experimental() // untriaged
850 @Native("EXTBlendMinMax,EXT_blend_min_max") 850 @Native("EXTBlendMinMax,EXT_blend_minmax")
851 class ExtBlendMinMax extends Interceptor { 851 class ExtBlendMinMax extends Interceptor {
852 // To suppress missing implicit constructor warnings. 852 // To suppress missing implicit constructor warnings.
853 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } 853 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); }
854 854
855 @DomName('EXTBlendMinMax.MAX_EXT') 855 @DomName('EXTBlendMinMax.MAX_EXT')
856 @DocsEditable() 856 @DocsEditable()
857 @Experimental() // untriaged 857 @Experimental() // untriaged
858 static const int MAX_EXT = 0x8008; 858 static const int MAX_EXT = 0x8008;
859 859
860 @DomName('EXTBlendMinMax.MIN_EXT') 860 @DomName('EXTBlendMinMax.MIN_EXT')
(...skipping 5152 matching lines...) Expand 10 before | Expand all | Expand 10 after
6013 // BSD-style license that can be found in the LICENSE file. 6013 // BSD-style license that can be found in the LICENSE file.
6014 6014
6015 6015
6016 @DocsEditable() 6016 @DocsEditable()
6017 @DomName('WebGLRenderingContextBase') 6017 @DomName('WebGLRenderingContextBase')
6018 @Experimental() // untriaged 6018 @Experimental() // untriaged
6019 abstract class _WebGLRenderingContextBase extends Interceptor { 6019 abstract class _WebGLRenderingContextBase extends Interceptor {
6020 // To suppress missing implicit constructor warnings. 6020 // To suppress missing implicit constructor warnings.
6021 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); } 6021 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); }
6022 } 6022 }
OLDNEW
« no previous file with comments | « no previous file | tests/co19/co19-dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698