| OLD | NEW |
| 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 // DO NOT EDIT | 10 // DO NOT EDIT |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 void set antialias(bool value) native "WebGLContextAttributes_antialias_Setter
"; | 537 void set antialias(bool value) native "WebGLContextAttributes_antialias_Setter
"; |
| 538 | 538 |
| 539 @DomName('WebGLContextAttributes.depth') | 539 @DomName('WebGLContextAttributes.depth') |
| 540 @DocsEditable() | 540 @DocsEditable() |
| 541 bool get depth native "WebGLContextAttributes_depth_Getter"; | 541 bool get depth native "WebGLContextAttributes_depth_Getter"; |
| 542 | 542 |
| 543 @DomName('WebGLContextAttributes.depth') | 543 @DomName('WebGLContextAttributes.depth') |
| 544 @DocsEditable() | 544 @DocsEditable() |
| 545 void set depth(bool value) native "WebGLContextAttributes_depth_Setter"; | 545 void set depth(bool value) native "WebGLContextAttributes_depth_Setter"; |
| 546 | 546 |
| 547 @DomName('WebGLContextAttributes.failIfMajorPerformanceCaveat') |
| 548 @DocsEditable() |
| 549 @Experimental() // untriaged |
| 550 bool get failIfMajorPerformanceCaveat native "WebGLContextAttributes_failIfMaj
orPerformanceCaveat_Getter"; |
| 551 |
| 552 @DomName('WebGLContextAttributes.failIfMajorPerformanceCaveat') |
| 553 @DocsEditable() |
| 554 @Experimental() // untriaged |
| 555 void set failIfMajorPerformanceCaveat(bool value) native "WebGLContextAttribut
es_failIfMajorPerformanceCaveat_Setter"; |
| 556 |
| 547 @DomName('WebGLContextAttributes.premultipliedAlpha') | 557 @DomName('WebGLContextAttributes.premultipliedAlpha') |
| 548 @DocsEditable() | 558 @DocsEditable() |
| 549 bool get premultipliedAlpha native "WebGLContextAttributes_premultipliedAlpha_
Getter"; | 559 bool get premultipliedAlpha native "WebGLContextAttributes_premultipliedAlpha_
Getter"; |
| 550 | 560 |
| 551 @DomName('WebGLContextAttributes.premultipliedAlpha') | 561 @DomName('WebGLContextAttributes.premultipliedAlpha') |
| 552 @DocsEditable() | 562 @DocsEditable() |
| 553 void set premultipliedAlpha(bool value) native "WebGLContextAttributes_premult
ipliedAlpha_Setter"; | 563 void set premultipliedAlpha(bool value) native "WebGLContextAttributes_premult
ipliedAlpha_Setter"; |
| 554 | 564 |
| 555 @DomName('WebGLContextAttributes.preserveDrawingBuffer') | 565 @DomName('WebGLContextAttributes.preserveDrawingBuffer') |
| 556 @DocsEditable() | 566 @DocsEditable() |
| (...skipping 2525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3082 | 3092 |
| 3083 @DocsEditable() | 3093 @DocsEditable() |
| 3084 @DomName('WebGLVertexArrayObjectOES') | 3094 @DomName('WebGLVertexArrayObjectOES') |
| 3085 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 3095 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 3086 @Experimental() // experimental | 3096 @Experimental() // experimental |
| 3087 class VertexArrayObject extends NativeFieldWrapperClass2 { | 3097 class VertexArrayObject extends NativeFieldWrapperClass2 { |
| 3088 // To suppress missing implicit constructor warnings. | 3098 // To suppress missing implicit constructor warnings. |
| 3089 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 3099 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
| 3090 | 3100 |
| 3091 } | 3101 } |
| OLD | NEW |