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

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

Issue 16636003: Blink IDL roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 library dart.dom.web_gl; 1 library dart.dom.web_gl;
2 2
3 import 'dart:collection'; 3 import 'dart:collection';
4 import 'dart:_collection-dev'; 4 import 'dart:_collection-dev';
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:typed_data'; 7 import 'dart:typed_data';
8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure ToJS; 8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure ToJS;
9 import 'dart:_foreign_helper' show JS; 9 import 'dart:_foreign_helper' show JS;
10 import 'dart:_interceptors' show Interceptor; 10 import 'dart:_interceptors' show Interceptor;
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') 669 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT')
670 @DocsEditable 670 @DocsEditable
671 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; 671 static const int MAX_DRAW_BUFFERS_EXT = 0x8824;
672 } 672 }
673 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 673 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
674 // for details. All rights reserved. Use of this source code is governed by a 674 // for details. All rights reserved. Use of this source code is governed by a
675 // BSD-style license that can be found in the LICENSE file. 675 // BSD-style license that can be found in the LICENSE file.
676 676
677 677
678 @DocsEditable 678 @DocsEditable
679 @DomName('EXTFragDepth')
680 @Experimental // untriaged
681 class ExtFragDepth native "EXTFragDepth" {
682 }
683 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
684 // for details. All rights reserved. Use of this source code is governed by a
685 // BSD-style license that can be found in the LICENSE file.
686
687
688 @DocsEditable
679 @DomName('EXTTextureFilterAnisotropic') 689 @DomName('EXTTextureFilterAnisotropic')
680 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop ic/ 690 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop ic/
681 @Experimental 691 @Experimental
682 class ExtTextureFilterAnisotropic native "EXTTextureFilterAnisotropic" { 692 class ExtTextureFilterAnisotropic native "EXTTextureFilterAnisotropic" {
683 693
684 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT') 694 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT')
685 @DocsEditable 695 @DocsEditable
686 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; 696 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
687 697
688 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT') 698 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT')
(...skipping 2046 matching lines...) Expand 10 before | Expand all | Expand 10 after
2735 // for details. All rights reserved. Use of this source code is governed by a 2745 // for details. All rights reserved. Use of this source code is governed by a
2736 // BSD-style license that can be found in the LICENSE file. 2746 // BSD-style license that can be found in the LICENSE file.
2737 2747
2738 2748
2739 @DocsEditable 2749 @DocsEditable
2740 @DomName('WebGLVertexArrayObjectOES') 2750 @DomName('WebGLVertexArrayObjectOES')
2741 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 2751 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
2742 @Experimental // experimental 2752 @Experimental // experimental
2743 class VertexArrayObject native "WebGLVertexArrayObjectOES" { 2753 class VertexArrayObject native "WebGLVertexArrayObjectOES" {
2744 } 2754 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698