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

Side by Side Diff: sdk/lib/web_gl/dartium/web_gl_dartium.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:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 static const int DRAW_BUFFER9_EXT = 0x882E; 728 static const int DRAW_BUFFER9_EXT = 0x882E;
729 729
730 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') 730 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT')
731 @DocsEditable 731 @DocsEditable
732 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; 732 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF;
733 733
734 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') 734 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT')
735 @DocsEditable 735 @DocsEditable
736 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; 736 static const int MAX_DRAW_BUFFERS_EXT = 0x8824;
737 737
738 @DomName('EXTDrawBuffers.drawBuffersEXT')
739 @DocsEditable
740 @Experimental // untriaged
741 void drawBuffersExt(List<int> buffers) native "EXTDrawBuffers_drawBuffersEXT_C allback";
742
738 } 743 }
739 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 744 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
740 // for details. All rights reserved. Use of this source code is governed by a 745 // for details. All rights reserved. Use of this source code is governed by a
741 // BSD-style license that can be found in the LICENSE file. 746 // BSD-style license that can be found in the LICENSE file.
742 747
743 // WARNING: Do not edit - generated code. 748 // WARNING: Do not edit - generated code.
744 749
745 750
746 @DocsEditable 751 @DocsEditable
747 @DomName('EXTFragDepth') 752 @DomName('EXTFragDepth')
(...skipping 2138 matching lines...) Expand 10 before | Expand all | Expand 10 after
2886 2891
2887 2892
2888 @DocsEditable 2893 @DocsEditable
2889 @DomName('WebGLVertexArrayObjectOES') 2894 @DomName('WebGLVertexArrayObjectOES')
2890 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 2895 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
2891 @Experimental // experimental 2896 @Experimental // experimental
2892 class VertexArrayObject extends NativeFieldWrapperClass1 { 2897 class VertexArrayObject extends NativeFieldWrapperClass1 {
2893 VertexArrayObject.internal(); 2898 VertexArrayObject.internal();
2894 2899
2895 } 2900 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698