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

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

Issue 644913002: Version 1.7.1 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.7/
Patch Set: Created 6 years, 2 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 | « dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | dart/tools/VERSION » ('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:_internal' hide deprecated; 5 import 'dart:_internal' hide deprecated;
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 import 'dart:_blink' as _blink; 10 import 'dart:_blink' as _blink;
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 static const int DRAW_BUFFER9_WEBGL = 0x882E; 866 static const int DRAW_BUFFER9_WEBGL = 0x882E;
867 867
868 @DomName('WebGLDrawBuffers.MAX_COLOR_ATTACHMENTS_WEBGL') 868 @DomName('WebGLDrawBuffers.MAX_COLOR_ATTACHMENTS_WEBGL')
869 @DocsEditable() 869 @DocsEditable()
870 static const int MAX_COLOR_ATTACHMENTS_WEBGL = 0x8CDF; 870 static const int MAX_COLOR_ATTACHMENTS_WEBGL = 0x8CDF;
871 871
872 @DomName('WebGLDrawBuffers.MAX_DRAW_BUFFERS_WEBGL') 872 @DomName('WebGLDrawBuffers.MAX_DRAW_BUFFERS_WEBGL')
873 @DocsEditable() 873 @DocsEditable()
874 static const int MAX_DRAW_BUFFERS_WEBGL = 0x8824; 874 static const int MAX_DRAW_BUFFERS_WEBGL = 0x8824;
875 875
876 @DomName('WebGLDrawBuffers.drawBuffersWEBGL')
877 @DocsEditable()
878 void drawBuffersWebgl(List<int> buffers) => _blink.BlinkWebGLDrawBuffers.drawB uffersWEBGL_Callback_SEQ_ul_SEQ(this, buffers);
879
876 } 880 }
877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
878 // for details. All rights reserved. Use of this source code is governed by a 882 // for details. All rights reserved. Use of this source code is governed by a
879 // BSD-style license that can be found in the LICENSE file. 883 // BSD-style license that can be found in the LICENSE file.
880 884
881 // WARNING: Do not edit - generated code. 885 // WARNING: Do not edit - generated code.
882 886
883 887
884 @DocsEditable() 888 @DocsEditable()
885 @DomName('EXTBlendMinMax') 889 @DomName('EXTBlendMinMax')
(...skipping 2302 matching lines...) Expand 10 before | Expand all | Expand 10 after
3188 3192
3189 3193
3190 @DocsEditable() 3194 @DocsEditable()
3191 @DomName('WebGLRenderingContextBase') 3195 @DomName('WebGLRenderingContextBase')
3192 @Experimental() // untriaged 3196 @Experimental() // untriaged
3193 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { 3197 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 {
3194 // To suppress missing implicit constructor warnings. 3198 // To suppress missing implicit constructor warnings.
3195 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); } 3199 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); }
3196 3200
3197 } 3201 }
OLDNEW
« no previous file with comments | « dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | dart/tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698