OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |