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

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

Issue 13467020: Renaming WebGLVertexArrayObject (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 | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('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, JSName, Null, Returns, convertDartClosure ToJS; 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.
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 637
638 @DocsEditable 638 @DocsEditable
639 @DomName('OESVertexArrayObject') 639 @DomName('OESVertexArrayObject')
640 class OesVertexArrayObject native "*OESVertexArrayObject" { 640 class OesVertexArrayObject native "*OESVertexArrayObject" {
641 641
642 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; 642 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5;
643 643
644 @JSName('bindVertexArrayOES') 644 @JSName('bindVertexArrayOES')
645 @DomName('OESVertexArrayObject.bindVertexArrayOES') 645 @DomName('OESVertexArrayObject.bindVertexArrayOES')
646 @DocsEditable 646 @DocsEditable
647 void bindVertexArray(WebGLVertexArrayObject arrayObject) native; 647 void bindVertexArray(VertexArrayObject arrayObject) native;
648 648
649 @JSName('createVertexArrayOES') 649 @JSName('createVertexArrayOES')
650 @DomName('OESVertexArrayObject.createVertexArrayOES') 650 @DomName('OESVertexArrayObject.createVertexArrayOES')
651 @DocsEditable 651 @DocsEditable
652 WebGLVertexArrayObject createVertexArray() native; 652 VertexArrayObject createVertexArray() native;
653 653
654 @JSName('deleteVertexArrayOES') 654 @JSName('deleteVertexArrayOES')
655 @DomName('OESVertexArrayObject.deleteVertexArrayOES') 655 @DomName('OESVertexArrayObject.deleteVertexArrayOES')
656 @DocsEditable 656 @DocsEditable
657 void deleteVertexArray(WebGLVertexArrayObject arrayObject) native; 657 void deleteVertexArray(VertexArrayObject arrayObject) native;
658 658
659 @JSName('isVertexArrayOES') 659 @JSName('isVertexArrayOES')
660 @DomName('OESVertexArrayObject.isVertexArrayOES') 660 @DomName('OESVertexArrayObject.isVertexArrayOES')
661 @DocsEditable 661 @DocsEditable
662 bool isVertexArray(WebGLVertexArrayObject arrayObject) native; 662 bool isVertexArray(VertexArrayObject arrayObject) native;
663 } 663 }
664 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 664 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
665 // for details. All rights reserved. Use of this source code is governed by a 665 // for details. All rights reserved. Use of this source code is governed by a
666 // BSD-style license that can be found in the LICENSE file. 666 // BSD-style license that can be found in the LICENSE file.
667 667
668 668
669 @DocsEditable 669 @DocsEditable
670 @DomName('WebGLProgram') 670 @DomName('WebGLProgram')
671 class Program native "*WebGLProgram" { 671 class Program native "*WebGLProgram" {
672 } 672 }
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1978 @DomName('WebGLUniformLocation') 1978 @DomName('WebGLUniformLocation')
1979 class UniformLocation native "*WebGLUniformLocation" { 1979 class UniformLocation native "*WebGLUniformLocation" {
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 VertexArrayObject native "*WebGLVertexArrayObjectOES" {
1989 } 1989 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698