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

Side by Side Diff: sdk/lib/web_gl/dartium/web_gl_dartium.dart

Issue 17453003: Fixing an issue where EXTDrawBuffers.drawBuffersEXT was not getting generated. (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
« no previous file with comments | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | tools/dom/dom.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 static const int DRAW_BUFFER9_EXT = 0x882E; 739 static const int DRAW_BUFFER9_EXT = 0x882E;
740 740
741 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') 741 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT')
742 @DocsEditable 742 @DocsEditable
743 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; 743 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF;
744 744
745 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') 745 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT')
746 @DocsEditable 746 @DocsEditable
747 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; 747 static const int MAX_DRAW_BUFFERS_EXT = 0x8824;
748 748
749 @DomName('EXTDrawBuffers.drawBuffersEXT')
750 @DocsEditable
751 @Experimental // untriaged
752 void drawBuffersExt(List<int> buffers) native "EXTDrawBuffers_drawBuffersEXT_C allback";
753
749 } 754 }
750 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 755 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
751 // for details. All rights reserved. Use of this source code is governed by a 756 // for details. All rights reserved. Use of this source code is governed by a
752 // BSD-style license that can be found in the LICENSE file. 757 // BSD-style license that can be found in the LICENSE file.
753 758
754 // WARNING: Do not edit - generated code. 759 // WARNING: Do not edit - generated code.
755 760
756 761
757 @DocsEditable 762 @DocsEditable
758 @DomName('EXTFragDepth') 763 @DomName('EXTFragDepth')
(...skipping 2157 matching lines...) Expand 10 before | Expand all | Expand 10 after
2916 2921
2917 @DocsEditable 2922 @DocsEditable
2918 @DomName('WebGLVertexArrayObjectOES') 2923 @DomName('WebGLVertexArrayObjectOES')
2919 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 2924 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
2920 @Experimental // experimental 2925 @Experimental // experimental
2921 class VertexArrayObject extends NativeFieldWrapperClass1 { 2926 class VertexArrayObject extends NativeFieldWrapperClass1 {
2922 // To suppress missing implicit constructor warnings. 2927 // To suppress missing implicit constructor warnings.
2923 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } 2928 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); }
2924 2929
2925 } 2930 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | tools/dom/dom.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698