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

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

Issue 13492002: Fixing some dart2js annotation issues in web_gl lib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « no previous file | tools/dom/scripts/generator.py » ('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:collection'; 3 import 'dart:collection';
4 import 'dart:html'; 4 import 'dart:html';
5 import 'dart:html_common'; 5 import 'dart:html_common';
6 import 'dart:_js_helper' show Creates, Returns, convertDartClosureToJS; 6 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure ToJS;
7 import 'dart:_foreign_helper' show JS; 7 import 'dart:_foreign_helper' show JS;
8 // DO NOT EDIT - unless you are editing documentation as per: 8 // DO NOT EDIT - unless you are editing documentation as per:
9 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 9 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
10 // Auto-generated dart:web_gl library. 10 // Auto-generated dart:web_gl library.
11 11
12 12
13 13
14 14
15 15
16 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 16 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
(...skipping 1524 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 @DomName('WebGLRenderingContext.getExtension') 1541 @DomName('WebGLRenderingContext.getExtension')
1542 @DocsEditable 1542 @DocsEditable
1543 Object getExtension(String name) native; 1543 Object getExtension(String name) native;
1544 1544
1545 @DomName('WebGLRenderingContext.getFramebufferAttachmentParameter') 1545 @DomName('WebGLRenderingContext.getFramebufferAttachmentParameter')
1546 @DocsEditable 1546 @DocsEditable
1547 Object getFramebufferAttachmentParameter(int target, int attachment, int pname ) native; 1547 Object getFramebufferAttachmentParameter(int target, int attachment, int pname ) native;
1548 1548
1549 @DomName('WebGLRenderingContext.getParameter') 1549 @DomName('WebGLRenderingContext.getParameter')
1550 @DocsEditable 1550 @DocsEditable
1551 @Creates('Null|num|String|bool|=List|Float32Array|Int32Array|Uint32Array|WebGL Framebuffer|WebGLRenderbuffer|WebGLTexture') 1551 @Creates('Null|num|String|bool|=List|Float32Array|Int32Array|Uint32Array|Frame buffer|Renderbuffer|Texture')
1552 @Returns('Null|num|String|bool|=List|Float32Array|Int32Array|Uint32Array|WebGL Framebuffer|WebGLRenderbuffer|WebGLTexture') 1552 @Returns('Null|num|String|bool|=List|Float32Array|Int32Array|Uint32Array|Frame buffer|Renderbuffer|Texture')
1553 Object getParameter(int pname) native; 1553 Object getParameter(int pname) native;
1554 1554
1555 @DomName('WebGLRenderingContext.getProgramInfoLog') 1555 @DomName('WebGLRenderingContext.getProgramInfoLog')
1556 @DocsEditable 1556 @DocsEditable
1557 String getProgramInfoLog(Program program) native; 1557 String getProgramInfoLog(Program program) native;
1558 1558
1559 @DomName('WebGLRenderingContext.getProgramParameter') 1559 @DomName('WebGLRenderingContext.getProgramParameter')
1560 @DocsEditable 1560 @DocsEditable
1561 Object getProgramParameter(Program program, int pname) native; 1561 Object getProgramParameter(Program program, int pname) native;
1562 1562
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 } 1980 }
1981 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1981 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1982 // for details. All rights reserved. Use of this source code is governed by a 1982 // for details. All rights reserved. Use of this source code is governed by a
1983 // BSD-style license that can be found in the LICENSE file. 1983 // BSD-style license that can be found in the LICENSE file.
1984 1984
1985 1985
1986 @DocsEditable 1986 @DocsEditable
1987 @DomName('WebGLVertexArrayObjectOES') 1987 @DomName('WebGLVertexArrayObjectOES')
1988 class WebGLVertexArrayObject native "*WebGLVertexArrayObjectOES" { 1988 class WebGLVertexArrayObject native "*WebGLVertexArrayObjectOES" {
1989 } 1989 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698