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

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

Issue 142713007: Updating IDL files from Chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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/svg/dartium/svg_dartium.dart ('k') | 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 /** 1 /**
2 * 3D programming in the browser. 2 * 3D programming in the browser.
3 */ 3 */
4 library dart.dom.web_gl; 4 library dart.dom.web_gl;
5 5
6 import 'dart:collection'; 6 import 'dart:collection';
7 import 'dart:_internal' hide deprecated; 7 import 'dart:_internal' hide deprecated;
8 import 'dart:html'; 8 import 'dart:html';
9 import 'dart:html_common'; 9 import 'dart:html_common';
10 import 'dart:_native_typed_data'; 10 import 'dart:_native_typed_data';
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 bool alpha; 514 bool alpha;
515 515
516 @DomName('WebGLContextAttributes.antialias') 516 @DomName('WebGLContextAttributes.antialias')
517 @DocsEditable() 517 @DocsEditable()
518 bool antialias; 518 bool antialias;
519 519
520 @DomName('WebGLContextAttributes.depth') 520 @DomName('WebGLContextAttributes.depth')
521 @DocsEditable() 521 @DocsEditable()
522 bool depth; 522 bool depth;
523 523
524 @DomName('WebGLContextAttributes.failIfMajorPerformanceCaveat')
525 @DocsEditable()
526 @Experimental() // untriaged
527 bool failIfMajorPerformanceCaveat;
528
524 @DomName('WebGLContextAttributes.premultipliedAlpha') 529 @DomName('WebGLContextAttributes.premultipliedAlpha')
525 @DocsEditable() 530 @DocsEditable()
526 bool premultipliedAlpha; 531 bool premultipliedAlpha;
527 532
528 @DomName('WebGLContextAttributes.preserveDrawingBuffer') 533 @DomName('WebGLContextAttributes.preserveDrawingBuffer')
529 @DocsEditable() 534 @DocsEditable()
530 bool preserveDrawingBuffer; 535 bool preserveDrawingBuffer;
531 536
532 @DomName('WebGLContextAttributes.stencil') 537 @DomName('WebGLContextAttributes.stencil')
533 @DocsEditable() 538 @DocsEditable()
(...skipping 2696 matching lines...) Expand 10 before | Expand all | Expand 10 after
3230 3235
3231 3236
3232 @DocsEditable() 3237 @DocsEditable()
3233 @DomName('WebGLVertexArrayObjectOES') 3238 @DomName('WebGLVertexArrayObjectOES')
3234 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 3239 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
3235 @Experimental() // experimental 3240 @Experimental() // experimental
3236 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { 3241 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" {
3237 // To suppress missing implicit constructor warnings. 3242 // To suppress missing implicit constructor warnings.
3238 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } 3243 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); }
3239 } 3244 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dartium/svg_dartium.dart ('k') | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698