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

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

Issue 17550014: Fixing up previous CL to fix Dartium issues. (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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 @DocsEditable 662 @DocsEditable
663 static const int DRAW_BUFFER9_EXT = 0x882E; 663 static const int DRAW_BUFFER9_EXT = 0x882E;
664 664
665 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') 665 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT')
666 @DocsEditable 666 @DocsEditable
667 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; 667 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF;
668 668
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
673 @JSName('drawBuffersEXT')
674 @DomName('EXTDrawBuffers.drawBuffersEXT')
675 @DocsEditable
676 @Experimental // untriaged
677 void drawBuffersExt(List<int> buffers) native;
672 } 678 }
673 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 679 // 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 680 // 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. 681 // BSD-style license that can be found in the LICENSE file.
676 682
677 683
678 @DocsEditable 684 @DocsEditable
679 @DomName('EXTFragDepth') 685 @DomName('EXTFragDepth')
680 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ 686 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/
681 @Experimental 687 @Experimental
(...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after
2762 // for details. All rights reserved. Use of this source code is governed by a 2768 // for details. All rights reserved. Use of this source code is governed by a
2763 // BSD-style license that can be found in the LICENSE file. 2769 // BSD-style license that can be found in the LICENSE file.
2764 2770
2765 2771
2766 @DocsEditable 2772 @DocsEditable
2767 @DomName('WebGLVertexArrayObjectOES') 2773 @DomName('WebGLVertexArrayObjectOES')
2768 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 2774 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
2769 @Experimental // experimental 2775 @Experimental // experimental
2770 class VertexArrayObject native "WebGLVertexArrayObjectOES" { 2776 class VertexArrayObject native "WebGLVertexArrayObjectOES" {
2771 } 2777 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | tools/dom/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698