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

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

Issue 1392723003: Switch dart:html objects not to be NativeFieldWrapper subclasses with JsInterop (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
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:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:_internal'; 8 import 'dart:_internal';
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:html_common'; 10 import 'dart:html_common';
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
402 // for details. All rights reserved. Use of this source code is governed by a 402 // for details. All rights reserved. Use of this source code is governed by a
403 // BSD-style license that can be found in the LICENSE file. 403 // BSD-style license that can be found in the LICENSE file.
404 404
405 // WARNING: Do not edit - generated code. 405 // WARNING: Do not edit - generated code.
406 406
407 407
408 @DocsEditable() 408 @DocsEditable()
409 @DomName('WebGLActiveInfo') 409 @DomName('WebGLActiveInfo')
410 @Unstable() 410 @Unstable()
411 class ActiveInfo extends NativeFieldWrapperClass2 { 411 class ActiveInfo extends DartHtmlDomObject {
412 // To suppress missing implicit constructor warnings. 412 // To suppress missing implicit constructor warnings.
413 factory ActiveInfo._() { throw new UnsupportedError("Not supported"); } 413 factory ActiveInfo._() { throw new UnsupportedError("Not supported"); }
414 414
415 static ActiveInfo internalCreateActiveInfo() { 415 static ActiveInfo internalCreateActiveInfo() {
416 return new ActiveInfo._internalWrap(); 416 return new ActiveInfo._internalWrap();
417 } 417 }
418 418
419 js.JsObject blink_jsObject;
420
421 factory ActiveInfo._internalWrap() { 419 factory ActiveInfo._internalWrap() {
422 return new ActiveInfo.internal_(); 420 return new ActiveInfo.internal_();
423 } 421 }
424 422
425 ActiveInfo.internal_() { } 423 ActiveInfo.internal_() { }
426 424
427 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 425 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
428 int get hashCode => unwrap_jso(this).hashCode; 426 int get hashCode => unwrap_jso(this).hashCode;
429 427
430 @DomName('WebGLActiveInfo.name') 428 @DomName('WebGLActiveInfo.name')
(...skipping 12 matching lines...) Expand all
443 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 441 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
444 // for details. All rights reserved. Use of this source code is governed by a 442 // for details. All rights reserved. Use of this source code is governed by a
445 // BSD-style license that can be found in the LICENSE file. 443 // BSD-style license that can be found in the LICENSE file.
446 444
447 // WARNING: Do not edit - generated code. 445 // WARNING: Do not edit - generated code.
448 446
449 447
450 @DocsEditable() 448 @DocsEditable()
451 @DomName('ANGLEInstancedArrays') 449 @DomName('ANGLEInstancedArrays')
452 @Experimental() // untriaged 450 @Experimental() // untriaged
453 class AngleInstancedArrays extends NativeFieldWrapperClass2 { 451 class AngleInstancedArrays extends DartHtmlDomObject {
454 // To suppress missing implicit constructor warnings. 452 // To suppress missing implicit constructor warnings.
455 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported") ; } 453 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported") ; }
456 454
457 static AngleInstancedArrays internalCreateAngleInstancedArrays() { 455 static AngleInstancedArrays internalCreateAngleInstancedArrays() {
458 return new AngleInstancedArrays._internalWrap(); 456 return new AngleInstancedArrays._internalWrap();
459 } 457 }
460 458
461 js.JsObject blink_jsObject;
462
463 factory AngleInstancedArrays._internalWrap() { 459 factory AngleInstancedArrays._internalWrap() {
464 return new AngleInstancedArrays.internal_(); 460 return new AngleInstancedArrays.internal_();
465 } 461 }
466 462
467 AngleInstancedArrays.internal_() { } 463 AngleInstancedArrays.internal_() { }
468 464
469 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 465 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
470 int get hashCode => unwrap_jso(this).hashCode; 466 int get hashCode => unwrap_jso(this).hashCode;
471 467
472 @DomName('ANGLEInstancedArrays.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE') 468 @DomName('ANGLEInstancedArrays.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE')
(...skipping 20 matching lines...) Expand all
493 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 489 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
494 // for details. All rights reserved. Use of this source code is governed by a 490 // for details. All rights reserved. Use of this source code is governed by a
495 // BSD-style license that can be found in the LICENSE file. 491 // BSD-style license that can be found in the LICENSE file.
496 492
497 // WARNING: Do not edit - generated code. 493 // WARNING: Do not edit - generated code.
498 494
499 495
500 @DocsEditable() 496 @DocsEditable()
501 @DomName('WebGLBuffer') 497 @DomName('WebGLBuffer')
502 @Unstable() 498 @Unstable()
503 class Buffer extends NativeFieldWrapperClass2 { 499 class Buffer extends DartHtmlDomObject {
504 // To suppress missing implicit constructor warnings. 500 // To suppress missing implicit constructor warnings.
505 factory Buffer._() { throw new UnsupportedError("Not supported"); } 501 factory Buffer._() { throw new UnsupportedError("Not supported"); }
506 502
507 static Buffer internalCreateBuffer() { 503 static Buffer internalCreateBuffer() {
508 return new Buffer._internalWrap(); 504 return new Buffer._internalWrap();
509 } 505 }
510 506
511 js.JsObject blink_jsObject;
512
513 factory Buffer._internalWrap() { 507 factory Buffer._internalWrap() {
514 return new Buffer.internal_(); 508 return new Buffer.internal_();
515 } 509 }
516 510
517 Buffer.internal_() { } 511 Buffer.internal_() { }
518 512
519 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 513 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
520 int get hashCode => unwrap_jso(this).hashCode; 514 int get hashCode => unwrap_jso(this).hashCode;
521 515
522 } 516 }
523 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 517 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
524 // for details. All rights reserved. Use of this source code is governed by a 518 // for details. All rights reserved. Use of this source code is governed by a
525 // BSD-style license that can be found in the LICENSE file. 519 // BSD-style license that can be found in the LICENSE file.
526 520
527 // WARNING: Do not edit - generated code. 521 // WARNING: Do not edit - generated code.
528 522
529 523
530 @DocsEditable() 524 @DocsEditable()
531 @DomName('WebGLCompressedTextureATC') 525 @DomName('WebGLCompressedTextureATC')
532 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc / 526 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc /
533 @Experimental() 527 @Experimental()
534 class CompressedTextureAtc extends NativeFieldWrapperClass2 { 528 class CompressedTextureAtc extends DartHtmlDomObject {
535 // To suppress missing implicit constructor warnings. 529 // To suppress missing implicit constructor warnings.
536 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported") ; } 530 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported") ; }
537 531
538 static CompressedTextureAtc internalCreateCompressedTextureAtc() { 532 static CompressedTextureAtc internalCreateCompressedTextureAtc() {
539 return new CompressedTextureAtc._internalWrap(); 533 return new CompressedTextureAtc._internalWrap();
540 } 534 }
541 535
542 js.JsObject blink_jsObject;
543
544 factory CompressedTextureAtc._internalWrap() { 536 factory CompressedTextureAtc._internalWrap() {
545 return new CompressedTextureAtc.internal_(); 537 return new CompressedTextureAtc.internal_();
546 } 538 }
547 539
548 CompressedTextureAtc.internal_() { } 540 CompressedTextureAtc.internal_() { }
549 541
550 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 542 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
551 int get hashCode => unwrap_jso(this).hashCode; 543 int get hashCode => unwrap_jso(this).hashCode;
552 544
553 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL') 545 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL')
(...skipping 12 matching lines...) Expand all
566 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 558 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
567 // for details. All rights reserved. Use of this source code is governed by a 559 // for details. All rights reserved. Use of this source code is governed by a
568 // BSD-style license that can be found in the LICENSE file. 560 // BSD-style license that can be found in the LICENSE file.
569 561
570 // WARNING: Do not edit - generated code. 562 // WARNING: Do not edit - generated code.
571 563
572 564
573 @DocsEditable() 565 @DocsEditable()
574 @DomName('WebGLCompressedTextureETC1') 566 @DomName('WebGLCompressedTextureETC1')
575 @Experimental() // untriaged 567 @Experimental() // untriaged
576 class CompressedTextureETC1 extends NativeFieldWrapperClass2 { 568 class CompressedTextureETC1 extends DartHtmlDomObject {
577 // To suppress missing implicit constructor warnings. 569 // To suppress missing implicit constructor warnings.
578 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported" ); } 570 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported" ); }
579 571
580 static CompressedTextureETC1 internalCreateCompressedTextureETC1() { 572 static CompressedTextureETC1 internalCreateCompressedTextureETC1() {
581 return new CompressedTextureETC1._internalWrap(); 573 return new CompressedTextureETC1._internalWrap();
582 } 574 }
583 575
584 js.JsObject blink_jsObject;
585
586 factory CompressedTextureETC1._internalWrap() { 576 factory CompressedTextureETC1._internalWrap() {
587 return new CompressedTextureETC1.internal_(); 577 return new CompressedTextureETC1.internal_();
588 } 578 }
589 579
590 CompressedTextureETC1.internal_() { } 580 CompressedTextureETC1.internal_() { }
591 581
592 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 582 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
593 int get hashCode => unwrap_jso(this).hashCode; 583 int get hashCode => unwrap_jso(this).hashCode;
594 584
595 @DomName('WebGLCompressedTextureETC1.COMPRESSED_RGB_ETC1_WEBGL') 585 @DomName('WebGLCompressedTextureETC1.COMPRESSED_RGB_ETC1_WEBGL')
596 @DocsEditable() 586 @DocsEditable()
597 @Experimental() // untriaged 587 @Experimental() // untriaged
598 static const int COMPRESSED_RGB_ETC1_WEBGL = 0x8D64; 588 static const int COMPRESSED_RGB_ETC1_WEBGL = 0x8D64;
599 589
600 } 590 }
601 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 591 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
602 // for details. All rights reserved. Use of this source code is governed by a 592 // for details. All rights reserved. Use of this source code is governed by a
603 // BSD-style license that can be found in the LICENSE file. 593 // BSD-style license that can be found in the LICENSE file.
604 594
605 // WARNING: Do not edit - generated code. 595 // WARNING: Do not edit - generated code.
606 596
607 597
608 @DocsEditable() 598 @DocsEditable()
609 @DomName('WebGLCompressedTexturePVRTC') 599 @DomName('WebGLCompressedTexturePVRTC')
610 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvr tc/ 600 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvr tc/
611 @Experimental() // experimental 601 @Experimental() // experimental
612 class CompressedTexturePvrtc extends NativeFieldWrapperClass2 { 602 class CompressedTexturePvrtc extends DartHtmlDomObject {
613 // To suppress missing implicit constructor warnings. 603 // To suppress missing implicit constructor warnings.
614 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported "); } 604 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported "); }
615 605
616 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() { 606 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() {
617 return new CompressedTexturePvrtc._internalWrap(); 607 return new CompressedTexturePvrtc._internalWrap();
618 } 608 }
619 609
620 js.JsObject blink_jsObject;
621
622 factory CompressedTexturePvrtc._internalWrap() { 610 factory CompressedTexturePvrtc._internalWrap() {
623 return new CompressedTexturePvrtc.internal_(); 611 return new CompressedTexturePvrtc.internal_();
624 } 612 }
625 613
626 CompressedTexturePvrtc.internal_() { } 614 CompressedTexturePvrtc.internal_() { }
627 615
628 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 616 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
629 int get hashCode => unwrap_jso(this).hashCode; 617 int get hashCode => unwrap_jso(this).hashCode;
630 618
631 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG') 619 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG')
(...skipping 17 matching lines...) Expand all
649 // for details. All rights reserved. Use of this source code is governed by a 637 // for details. All rights reserved. Use of this source code is governed by a
650 // BSD-style license that can be found in the LICENSE file. 638 // BSD-style license that can be found in the LICENSE file.
651 639
652 // WARNING: Do not edit - generated code. 640 // WARNING: Do not edit - generated code.
653 641
654 642
655 @DocsEditable() 643 @DocsEditable()
656 @DomName('WebGLCompressedTextureS3TC') 644 @DomName('WebGLCompressedTextureS3TC')
657 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3t c/ 645 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3t c/
658 @Experimental() // experimental 646 @Experimental() // experimental
659 class CompressedTextureS3TC extends NativeFieldWrapperClass2 { 647 class CompressedTextureS3TC extends DartHtmlDomObject {
660 // To suppress missing implicit constructor warnings. 648 // To suppress missing implicit constructor warnings.
661 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported" ); } 649 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported" ); }
662 650
663 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() { 651 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() {
664 return new CompressedTextureS3TC._internalWrap(); 652 return new CompressedTextureS3TC._internalWrap();
665 } 653 }
666 654
667 js.JsObject blink_jsObject;
668
669 factory CompressedTextureS3TC._internalWrap() { 655 factory CompressedTextureS3TC._internalWrap() {
670 return new CompressedTextureS3TC.internal_(); 656 return new CompressedTextureS3TC.internal_();
671 } 657 }
672 658
673 CompressedTextureS3TC.internal_() { } 659 CompressedTextureS3TC.internal_() { }
674 660
675 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 661 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
676 int get hashCode => unwrap_jso(this).hashCode; 662 int get hashCode => unwrap_jso(this).hashCode;
677 663
678 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT1_EXT') 664 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT1_EXT')
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 * ignored. 703 * ignored.
718 * 704 *
719 * If [preserveDrawingBuffer] is `false`, then all contents of the context are 705 * If [preserveDrawingBuffer] is `false`, then all contents of the context are
720 * cleared. If `true`, then all values will remain until changed or cleared. 706 * cleared. If `true`, then all values will remain until changed or cleared.
721 * 707 *
722 * If [stencil] is `true`, then the context has a stencil buffer of at least 8 708 * If [stencil] is `true`, then the context has a stencil buffer of at least 8
723 * bits. 709 * bits.
724 */ 710 */
725 @DomName('WebGLContextAttributes') 711 @DomName('WebGLContextAttributes')
726 @Unstable() 712 @Unstable()
727 class ContextAttributes extends NativeFieldWrapperClass2 { 713 class ContextAttributes extends DartHtmlDomObject {
728 // To suppress missing implicit constructor warnings. 714 // To suppress missing implicit constructor warnings.
729 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); } 715 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); }
730 716
731 static ContextAttributes internalCreateContextAttributes() { 717 static ContextAttributes internalCreateContextAttributes() {
732 return new ContextAttributes._internalWrap(); 718 return new ContextAttributes._internalWrap();
733 } 719 }
734 720
735 js.JsObject blink_jsObject;
736
737 factory ContextAttributes._internalWrap() { 721 factory ContextAttributes._internalWrap() {
738 return new ContextAttributes.internal_(); 722 return new ContextAttributes.internal_();
739 } 723 }
740 724
741 ContextAttributes.internal_() { } 725 ContextAttributes.internal_() { }
742 726
743 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 727 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
744 int get hashCode => unwrap_jso(this).hashCode; 728 int get hashCode => unwrap_jso(this).hashCode;
745 729
746 @DomName('WebGLContextAttributes.alpha') 730 @DomName('WebGLContextAttributes.alpha')
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 // for details. All rights reserved. Use of this source code is governed by a 821 // for details. All rights reserved. Use of this source code is governed by a
838 // BSD-style license that can be found in the LICENSE file. 822 // BSD-style license that can be found in the LICENSE file.
839 823
840 // WARNING: Do not edit - generated code. 824 // WARNING: Do not edit - generated code.
841 825
842 826
843 @DocsEditable() 827 @DocsEditable()
844 @DomName('WebGLDebugRendererInfo') 828 @DomName('WebGLDebugRendererInfo')
845 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/ 829 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/
846 @Experimental() // experimental 830 @Experimental() // experimental
847 class DebugRendererInfo extends NativeFieldWrapperClass2 { 831 class DebugRendererInfo extends DartHtmlDomObject {
848 // To suppress missing implicit constructor warnings. 832 // To suppress missing implicit constructor warnings.
849 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); } 833 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); }
850 834
851 static DebugRendererInfo internalCreateDebugRendererInfo() { 835 static DebugRendererInfo internalCreateDebugRendererInfo() {
852 return new DebugRendererInfo._internalWrap(); 836 return new DebugRendererInfo._internalWrap();
853 } 837 }
854 838
855 js.JsObject blink_jsObject;
856
857 factory DebugRendererInfo._internalWrap() { 839 factory DebugRendererInfo._internalWrap() {
858 return new DebugRendererInfo.internal_(); 840 return new DebugRendererInfo.internal_();
859 } 841 }
860 842
861 DebugRendererInfo.internal_() { } 843 DebugRendererInfo.internal_() { }
862 844
863 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 845 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
864 int get hashCode => unwrap_jso(this).hashCode; 846 int get hashCode => unwrap_jso(this).hashCode;
865 847
866 @DomName('WebGLDebugRendererInfo.UNMASKED_RENDERER_WEBGL') 848 @DomName('WebGLDebugRendererInfo.UNMASKED_RENDERER_WEBGL')
867 @DocsEditable() 849 @DocsEditable()
868 static const int UNMASKED_RENDERER_WEBGL = 0x9246; 850 static const int UNMASKED_RENDERER_WEBGL = 0x9246;
869 851
870 @DomName('WebGLDebugRendererInfo.UNMASKED_VENDOR_WEBGL') 852 @DomName('WebGLDebugRendererInfo.UNMASKED_VENDOR_WEBGL')
871 @DocsEditable() 853 @DocsEditable()
872 static const int UNMASKED_VENDOR_WEBGL = 0x9245; 854 static const int UNMASKED_VENDOR_WEBGL = 0x9245;
873 855
874 } 856 }
875 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 857 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
876 // for details. All rights reserved. Use of this source code is governed by a 858 // for details. All rights reserved. Use of this source code is governed by a
877 // BSD-style license that can be found in the LICENSE file. 859 // BSD-style license that can be found in the LICENSE file.
878 860
879 // WARNING: Do not edit - generated code. 861 // WARNING: Do not edit - generated code.
880 862
881 863
882 @DocsEditable() 864 @DocsEditable()
883 @DomName('WebGLDebugShaders') 865 @DomName('WebGLDebugShaders')
884 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_shaders/ 866 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_shaders/
885 @Experimental() // experimental 867 @Experimental() // experimental
886 class DebugShaders extends NativeFieldWrapperClass2 { 868 class DebugShaders extends DartHtmlDomObject {
887 // To suppress missing implicit constructor warnings. 869 // To suppress missing implicit constructor warnings.
888 factory DebugShaders._() { throw new UnsupportedError("Not supported"); } 870 factory DebugShaders._() { throw new UnsupportedError("Not supported"); }
889 871
890 static DebugShaders internalCreateDebugShaders() { 872 static DebugShaders internalCreateDebugShaders() {
891 return new DebugShaders._internalWrap(); 873 return new DebugShaders._internalWrap();
892 } 874 }
893 875
894 js.JsObject blink_jsObject;
895
896 factory DebugShaders._internalWrap() { 876 factory DebugShaders._internalWrap() {
897 return new DebugShaders.internal_(); 877 return new DebugShaders.internal_();
898 } 878 }
899 879
900 DebugShaders.internal_() { } 880 DebugShaders.internal_() { }
901 881
902 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 882 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
903 int get hashCode => unwrap_jso(this).hashCode; 883 int get hashCode => unwrap_jso(this).hashCode;
904 884
905 @DomName('WebGLDebugShaders.getTranslatedShaderSource') 885 @DomName('WebGLDebugShaders.getTranslatedShaderSource')
906 @DocsEditable() 886 @DocsEditable()
907 String getTranslatedShaderSource(Shader shader) => _blink.BlinkWebGLDebugShade rs.instance.getTranslatedShaderSource_Callback_1_(unwrap_jso(this), unwrap_jso(s hader)); 887 String getTranslatedShaderSource(Shader shader) => _blink.BlinkWebGLDebugShade rs.instance.getTranslatedShaderSource_Callback_1_(unwrap_jso(this), unwrap_jso(s hader));
908 888
909 } 889 }
910 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 890 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
911 // for details. All rights reserved. Use of this source code is governed by a 891 // for details. All rights reserved. Use of this source code is governed by a
912 // BSD-style license that can be found in the LICENSE file. 892 // BSD-style license that can be found in the LICENSE file.
913 893
914 // WARNING: Do not edit - generated code. 894 // WARNING: Do not edit - generated code.
915 895
916 896
917 @DocsEditable() 897 @DocsEditable()
918 @DomName('WebGLDepthTexture') 898 @DomName('WebGLDepthTexture')
919 // http://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/ 899 // http://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/
920 @Experimental() // experimental 900 @Experimental() // experimental
921 class DepthTexture extends NativeFieldWrapperClass2 { 901 class DepthTexture extends DartHtmlDomObject {
922 // To suppress missing implicit constructor warnings. 902 // To suppress missing implicit constructor warnings.
923 factory DepthTexture._() { throw new UnsupportedError("Not supported"); } 903 factory DepthTexture._() { throw new UnsupportedError("Not supported"); }
924 904
925 static DepthTexture internalCreateDepthTexture() { 905 static DepthTexture internalCreateDepthTexture() {
926 return new DepthTexture._internalWrap(); 906 return new DepthTexture._internalWrap();
927 } 907 }
928 908
929 js.JsObject blink_jsObject;
930
931 factory DepthTexture._internalWrap() { 909 factory DepthTexture._internalWrap() {
932 return new DepthTexture.internal_(); 910 return new DepthTexture.internal_();
933 } 911 }
934 912
935 DepthTexture.internal_() { } 913 DepthTexture.internal_() { }
936 914
937 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 915 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
938 int get hashCode => unwrap_jso(this).hashCode; 916 int get hashCode => unwrap_jso(this).hashCode;
939 917
940 @DomName('WebGLDepthTexture.UNSIGNED_INT_24_8_WEBGL') 918 @DomName('WebGLDepthTexture.UNSIGNED_INT_24_8_WEBGL')
941 @DocsEditable() 919 @DocsEditable()
942 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA; 920 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA;
943 921
944 } 922 }
945 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 923 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
946 // for details. All rights reserved. Use of this source code is governed by a 924 // for details. All rights reserved. Use of this source code is governed by a
947 // BSD-style license that can be found in the LICENSE file. 925 // BSD-style license that can be found in the LICENSE file.
948 926
949 // WARNING: Do not edit - generated code. 927 // WARNING: Do not edit - generated code.
950 928
951 929
952 @DocsEditable() 930 @DocsEditable()
953 @DomName('WebGLDrawBuffers') 931 @DomName('WebGLDrawBuffers')
954 // http://www.khronos.org/registry/webgl/specs/latest/ 932 // http://www.khronos.org/registry/webgl/specs/latest/
955 @Experimental() // stable 933 @Experimental() // stable
956 class DrawBuffers extends NativeFieldWrapperClass2 { 934 class DrawBuffers extends DartHtmlDomObject {
957 // To suppress missing implicit constructor warnings. 935 // To suppress missing implicit constructor warnings.
958 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); } 936 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); }
959 937
960 static DrawBuffers internalCreateDrawBuffers() { 938 static DrawBuffers internalCreateDrawBuffers() {
961 return new DrawBuffers._internalWrap(); 939 return new DrawBuffers._internalWrap();
962 } 940 }
963 941
964 js.JsObject blink_jsObject;
965
966 factory DrawBuffers._internalWrap() { 942 factory DrawBuffers._internalWrap() {
967 return new DrawBuffers.internal_(); 943 return new DrawBuffers.internal_();
968 } 944 }
969 945
970 DrawBuffers.internal_() { } 946 DrawBuffers.internal_() { }
971 947
972 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 948 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
973 int get hashCode => unwrap_jso(this).hashCode; 949 int get hashCode => unwrap_jso(this).hashCode;
974 950
975 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT0_WEBGL') 951 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT0_WEBGL')
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1092 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1117 // for details. All rights reserved. Use of this source code is governed by a 1093 // for details. All rights reserved. Use of this source code is governed by a
1118 // BSD-style license that can be found in the LICENSE file. 1094 // BSD-style license that can be found in the LICENSE file.
1119 1095
1120 // WARNING: Do not edit - generated code. 1096 // WARNING: Do not edit - generated code.
1121 1097
1122 1098
1123 @DocsEditable() 1099 @DocsEditable()
1124 @DomName('EXTBlendMinMax') 1100 @DomName('EXTBlendMinMax')
1125 @Experimental() // untriaged 1101 @Experimental() // untriaged
1126 class ExtBlendMinMax extends NativeFieldWrapperClass2 { 1102 class ExtBlendMinMax extends DartHtmlDomObject {
1127 // To suppress missing implicit constructor warnings. 1103 // To suppress missing implicit constructor warnings.
1128 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } 1104 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); }
1129 1105
1130 static ExtBlendMinMax internalCreateExtBlendMinMax() { 1106 static ExtBlendMinMax internalCreateExtBlendMinMax() {
1131 return new ExtBlendMinMax._internalWrap(); 1107 return new ExtBlendMinMax._internalWrap();
1132 } 1108 }
1133 1109
1134 js.JsObject blink_jsObject;
1135
1136 factory ExtBlendMinMax._internalWrap() { 1110 factory ExtBlendMinMax._internalWrap() {
1137 return new ExtBlendMinMax.internal_(); 1111 return new ExtBlendMinMax.internal_();
1138 } 1112 }
1139 1113
1140 ExtBlendMinMax.internal_() { } 1114 ExtBlendMinMax.internal_() { }
1141 1115
1142 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1116 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1143 int get hashCode => unwrap_jso(this).hashCode; 1117 int get hashCode => unwrap_jso(this).hashCode;
1144 1118
1145 @DomName('EXTBlendMinMax.MAX_EXT') 1119 @DomName('EXTBlendMinMax.MAX_EXT')
(...skipping 11 matching lines...) Expand all
1157 // for details. All rights reserved. Use of this source code is governed by a 1131 // for details. All rights reserved. Use of this source code is governed by a
1158 // BSD-style license that can be found in the LICENSE file. 1132 // BSD-style license that can be found in the LICENSE file.
1159 1133
1160 // WARNING: Do not edit - generated code. 1134 // WARNING: Do not edit - generated code.
1161 1135
1162 1136
1163 @DocsEditable() 1137 @DocsEditable()
1164 @DomName('EXTFragDepth') 1138 @DomName('EXTFragDepth')
1165 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ 1139 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/
1166 @Experimental() 1140 @Experimental()
1167 class ExtFragDepth extends NativeFieldWrapperClass2 { 1141 class ExtFragDepth extends DartHtmlDomObject {
1168 // To suppress missing implicit constructor warnings. 1142 // To suppress missing implicit constructor warnings.
1169 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); } 1143 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); }
1170 1144
1171 static ExtFragDepth internalCreateExtFragDepth() { 1145 static ExtFragDepth internalCreateExtFragDepth() {
1172 return new ExtFragDepth._internalWrap(); 1146 return new ExtFragDepth._internalWrap();
1173 } 1147 }
1174 1148
1175 js.JsObject blink_jsObject;
1176
1177 factory ExtFragDepth._internalWrap() { 1149 factory ExtFragDepth._internalWrap() {
1178 return new ExtFragDepth.internal_(); 1150 return new ExtFragDepth.internal_();
1179 } 1151 }
1180 1152
1181 ExtFragDepth.internal_() { } 1153 ExtFragDepth.internal_() { }
1182 1154
1183 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1155 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1184 int get hashCode => unwrap_jso(this).hashCode; 1156 int get hashCode => unwrap_jso(this).hashCode;
1185 1157
1186 } 1158 }
1187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1188 // for details. All rights reserved. Use of this source code is governed by a 1160 // for details. All rights reserved. Use of this source code is governed by a
1189 // BSD-style license that can be found in the LICENSE file. 1161 // BSD-style license that can be found in the LICENSE file.
1190 1162
1191 // WARNING: Do not edit - generated code. 1163 // WARNING: Do not edit - generated code.
1192 1164
1193 1165
1194 @DocsEditable() 1166 @DocsEditable()
1195 @DomName('EXTShaderTextureLOD') 1167 @DomName('EXTShaderTextureLOD')
1196 @Experimental() // untriaged 1168 @Experimental() // untriaged
1197 class ExtShaderTextureLod extends NativeFieldWrapperClass2 { 1169 class ExtShaderTextureLod extends DartHtmlDomObject {
1198 // To suppress missing implicit constructor warnings. 1170 // To suppress missing implicit constructor warnings.
1199 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported"); } 1171 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported"); }
1200 1172
1201 static ExtShaderTextureLod internalCreateExtShaderTextureLod() { 1173 static ExtShaderTextureLod internalCreateExtShaderTextureLod() {
1202 return new ExtShaderTextureLod._internalWrap(); 1174 return new ExtShaderTextureLod._internalWrap();
1203 } 1175 }
1204 1176
1205 js.JsObject blink_jsObject;
1206
1207 factory ExtShaderTextureLod._internalWrap() { 1177 factory ExtShaderTextureLod._internalWrap() {
1208 return new ExtShaderTextureLod.internal_(); 1178 return new ExtShaderTextureLod.internal_();
1209 } 1179 }
1210 1180
1211 ExtShaderTextureLod.internal_() { } 1181 ExtShaderTextureLod.internal_() { }
1212 1182
1213 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1183 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1214 int get hashCode => unwrap_jso(this).hashCode; 1184 int get hashCode => unwrap_jso(this).hashCode;
1215 1185
1216 } 1186 }
1217 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1218 // for details. All rights reserved. Use of this source code is governed by a 1188 // for details. All rights reserved. Use of this source code is governed by a
1219 // BSD-style license that can be found in the LICENSE file. 1189 // BSD-style license that can be found in the LICENSE file.
1220 1190
1221 // WARNING: Do not edit - generated code. 1191 // WARNING: Do not edit - generated code.
1222 1192
1223 1193
1224 @DocsEditable() 1194 @DocsEditable()
1225 @DomName('EXTTextureFilterAnisotropic') 1195 @DomName('EXTTextureFilterAnisotropic')
1226 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop ic/ 1196 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop ic/
1227 @Experimental() 1197 @Experimental()
1228 class ExtTextureFilterAnisotropic extends NativeFieldWrapperClass2 { 1198 class ExtTextureFilterAnisotropic extends DartHtmlDomObject {
1229 // To suppress missing implicit constructor warnings. 1199 // To suppress missing implicit constructor warnings.
1230 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp orted"); } 1200 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp orted"); }
1231 1201
1232 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic() { 1202 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic() {
1233 return new ExtTextureFilterAnisotropic._internalWrap(); 1203 return new ExtTextureFilterAnisotropic._internalWrap();
1234 } 1204 }
1235 1205
1236 js.JsObject blink_jsObject;
1237
1238 factory ExtTextureFilterAnisotropic._internalWrap() { 1206 factory ExtTextureFilterAnisotropic._internalWrap() {
1239 return new ExtTextureFilterAnisotropic.internal_(); 1207 return new ExtTextureFilterAnisotropic.internal_();
1240 } 1208 }
1241 1209
1242 ExtTextureFilterAnisotropic.internal_() { } 1210 ExtTextureFilterAnisotropic.internal_() { }
1243 1211
1244 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1212 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1245 int get hashCode => unwrap_jso(this).hashCode; 1213 int get hashCode => unwrap_jso(this).hashCode;
1246 1214
1247 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT') 1215 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT')
1248 @DocsEditable() 1216 @DocsEditable()
1249 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; 1217 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
1250 1218
1251 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT') 1219 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT')
1252 @DocsEditable() 1220 @DocsEditable()
1253 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; 1221 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
1254 1222
1255 } 1223 }
1256 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1224 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1257 // for details. All rights reserved. Use of this source code is governed by a 1225 // for details. All rights reserved. Use of this source code is governed by a
1258 // BSD-style license that can be found in the LICENSE file. 1226 // BSD-style license that can be found in the LICENSE file.
1259 1227
1260 // WARNING: Do not edit - generated code. 1228 // WARNING: Do not edit - generated code.
1261 1229
1262 1230
1263 @DocsEditable() 1231 @DocsEditable()
1264 @DomName('WebGLFramebuffer') 1232 @DomName('WebGLFramebuffer')
1265 @Unstable() 1233 @Unstable()
1266 class Framebuffer extends NativeFieldWrapperClass2 { 1234 class Framebuffer extends DartHtmlDomObject {
1267 // To suppress missing implicit constructor warnings. 1235 // To suppress missing implicit constructor warnings.
1268 factory Framebuffer._() { throw new UnsupportedError("Not supported"); } 1236 factory Framebuffer._() { throw new UnsupportedError("Not supported"); }
1269 1237
1270 static Framebuffer internalCreateFramebuffer() { 1238 static Framebuffer internalCreateFramebuffer() {
1271 return new Framebuffer._internalWrap(); 1239 return new Framebuffer._internalWrap();
1272 } 1240 }
1273 1241
1274 js.JsObject blink_jsObject;
1275
1276 factory Framebuffer._internalWrap() { 1242 factory Framebuffer._internalWrap() {
1277 return new Framebuffer.internal_(); 1243 return new Framebuffer.internal_();
1278 } 1244 }
1279 1245
1280 Framebuffer.internal_() { } 1246 Framebuffer.internal_() { }
1281 1247
1282 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1248 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1283 int get hashCode => unwrap_jso(this).hashCode; 1249 int get hashCode => unwrap_jso(this).hashCode;
1284 1250
1285 } 1251 }
1286 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1287 // for details. All rights reserved. Use of this source code is governed by a 1253 // for details. All rights reserved. Use of this source code is governed by a
1288 // BSD-style license that can be found in the LICENSE file. 1254 // BSD-style license that can be found in the LICENSE file.
1289 1255
1290 // WARNING: Do not edit - generated code. 1256 // WARNING: Do not edit - generated code.
1291 1257
1292 1258
1293 @DocsEditable() 1259 @DocsEditable()
1294 @DomName('WebGLLoseContext') 1260 @DomName('WebGLLoseContext')
1295 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/ 1261 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/
1296 @Experimental() 1262 @Experimental()
1297 class LoseContext extends NativeFieldWrapperClass2 { 1263 class LoseContext extends DartHtmlDomObject {
1298 // To suppress missing implicit constructor warnings. 1264 // To suppress missing implicit constructor warnings.
1299 factory LoseContext._() { throw new UnsupportedError("Not supported"); } 1265 factory LoseContext._() { throw new UnsupportedError("Not supported"); }
1300 1266
1301 static LoseContext internalCreateLoseContext() { 1267 static LoseContext internalCreateLoseContext() {
1302 return new LoseContext._internalWrap(); 1268 return new LoseContext._internalWrap();
1303 } 1269 }
1304 1270
1305 js.JsObject blink_jsObject;
1306
1307 factory LoseContext._internalWrap() { 1271 factory LoseContext._internalWrap() {
1308 return new LoseContext.internal_(); 1272 return new LoseContext.internal_();
1309 } 1273 }
1310 1274
1311 LoseContext.internal_() { } 1275 LoseContext.internal_() { }
1312 1276
1313 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1277 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1314 int get hashCode => unwrap_jso(this).hashCode; 1278 int get hashCode => unwrap_jso(this).hashCode;
1315 1279
1316 @DomName('WebGLLoseContext.loseContext') 1280 @DomName('WebGLLoseContext.loseContext')
1317 @DocsEditable() 1281 @DocsEditable()
1318 void loseContext() => _blink.BlinkWebGLLoseContext.instance.loseContext_Callba ck_0_(unwrap_jso(this)); 1282 void loseContext() => _blink.BlinkWebGLLoseContext.instance.loseContext_Callba ck_0_(unwrap_jso(this));
1319 1283
1320 @DomName('WebGLLoseContext.restoreContext') 1284 @DomName('WebGLLoseContext.restoreContext')
1321 @DocsEditable() 1285 @DocsEditable()
1322 void restoreContext() => _blink.BlinkWebGLLoseContext.instance.restoreContext_ Callback_0_(unwrap_jso(this)); 1286 void restoreContext() => _blink.BlinkWebGLLoseContext.instance.restoreContext_ Callback_0_(unwrap_jso(this));
1323 1287
1324 } 1288 }
1325 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1289 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1326 // for details. All rights reserved. Use of this source code is governed by a 1290 // for details. All rights reserved. Use of this source code is governed by a
1327 // BSD-style license that can be found in the LICENSE file. 1291 // BSD-style license that can be found in the LICENSE file.
1328 1292
1329 // WARNING: Do not edit - generated code. 1293 // WARNING: Do not edit - generated code.
1330 1294
1331 1295
1332 @DocsEditable() 1296 @DocsEditable()
1333 @DomName('OESElementIndexUint') 1297 @DomName('OESElementIndexUint')
1334 // http://www.khronos.org/registry/webgl/extensions/OES_element_index_uint/ 1298 // http://www.khronos.org/registry/webgl/extensions/OES_element_index_uint/
1335 @Experimental() // experimental 1299 @Experimental() // experimental
1336 class OesElementIndexUint extends NativeFieldWrapperClass2 { 1300 class OesElementIndexUint extends DartHtmlDomObject {
1337 // To suppress missing implicit constructor warnings. 1301 // To suppress missing implicit constructor warnings.
1338 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported"); } 1302 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported"); }
1339 1303
1340 static OesElementIndexUint internalCreateOesElementIndexUint() { 1304 static OesElementIndexUint internalCreateOesElementIndexUint() {
1341 return new OesElementIndexUint._internalWrap(); 1305 return new OesElementIndexUint._internalWrap();
1342 } 1306 }
1343 1307
1344 js.JsObject blink_jsObject;
1345
1346 factory OesElementIndexUint._internalWrap() { 1308 factory OesElementIndexUint._internalWrap() {
1347 return new OesElementIndexUint.internal_(); 1309 return new OesElementIndexUint.internal_();
1348 } 1310 }
1349 1311
1350 OesElementIndexUint.internal_() { } 1312 OesElementIndexUint.internal_() { }
1351 1313
1352 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1314 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1353 int get hashCode => unwrap_jso(this).hashCode; 1315 int get hashCode => unwrap_jso(this).hashCode;
1354 1316
1355 } 1317 }
1356 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1318 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1357 // for details. All rights reserved. Use of this source code is governed by a 1319 // for details. All rights reserved. Use of this source code is governed by a
1358 // BSD-style license that can be found in the LICENSE file. 1320 // BSD-style license that can be found in the LICENSE file.
1359 1321
1360 // WARNING: Do not edit - generated code. 1322 // WARNING: Do not edit - generated code.
1361 1323
1362 1324
1363 @DocsEditable() 1325 @DocsEditable()
1364 @DomName('OESStandardDerivatives') 1326 @DomName('OESStandardDerivatives')
1365 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/ 1327 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/
1366 @Experimental() // experimental 1328 @Experimental() // experimental
1367 class OesStandardDerivatives extends NativeFieldWrapperClass2 { 1329 class OesStandardDerivatives extends DartHtmlDomObject {
1368 // To suppress missing implicit constructor warnings. 1330 // To suppress missing implicit constructor warnings.
1369 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported "); } 1331 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported "); }
1370 1332
1371 static OesStandardDerivatives internalCreateOesStandardDerivatives() { 1333 static OesStandardDerivatives internalCreateOesStandardDerivatives() {
1372 return new OesStandardDerivatives._internalWrap(); 1334 return new OesStandardDerivatives._internalWrap();
1373 } 1335 }
1374 1336
1375 js.JsObject blink_jsObject;
1376
1377 factory OesStandardDerivatives._internalWrap() { 1337 factory OesStandardDerivatives._internalWrap() {
1378 return new OesStandardDerivatives.internal_(); 1338 return new OesStandardDerivatives.internal_();
1379 } 1339 }
1380 1340
1381 OesStandardDerivatives.internal_() { } 1341 OesStandardDerivatives.internal_() { }
1382 1342
1383 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1343 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1384 int get hashCode => unwrap_jso(this).hashCode; 1344 int get hashCode => unwrap_jso(this).hashCode;
1385 1345
1386 @DomName('OESStandardDerivatives.FRAGMENT_SHADER_DERIVATIVE_HINT_OES') 1346 @DomName('OESStandardDerivatives.FRAGMENT_SHADER_DERIVATIVE_HINT_OES')
1387 @DocsEditable() 1347 @DocsEditable()
1388 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; 1348 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B;
1389 1349
1390 } 1350 }
1391 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1351 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1392 // for details. All rights reserved. Use of this source code is governed by a 1352 // for details. All rights reserved. Use of this source code is governed by a
1393 // BSD-style license that can be found in the LICENSE file. 1353 // BSD-style license that can be found in the LICENSE file.
1394 1354
1395 // WARNING: Do not edit - generated code. 1355 // WARNING: Do not edit - generated code.
1396 1356
1397 1357
1398 @DocsEditable() 1358 @DocsEditable()
1399 @DomName('OESTextureFloat') 1359 @DomName('OESTextureFloat')
1400 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float/ 1360 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float/
1401 @Experimental() // experimental 1361 @Experimental() // experimental
1402 class OesTextureFloat extends NativeFieldWrapperClass2 { 1362 class OesTextureFloat extends DartHtmlDomObject {
1403 // To suppress missing implicit constructor warnings. 1363 // To suppress missing implicit constructor warnings.
1404 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); } 1364 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); }
1405 1365
1406 static OesTextureFloat internalCreateOesTextureFloat() { 1366 static OesTextureFloat internalCreateOesTextureFloat() {
1407 return new OesTextureFloat._internalWrap(); 1367 return new OesTextureFloat._internalWrap();
1408 } 1368 }
1409 1369
1410 js.JsObject blink_jsObject;
1411
1412 factory OesTextureFloat._internalWrap() { 1370 factory OesTextureFloat._internalWrap() {
1413 return new OesTextureFloat.internal_(); 1371 return new OesTextureFloat.internal_();
1414 } 1372 }
1415 1373
1416 OesTextureFloat.internal_() { } 1374 OesTextureFloat.internal_() { }
1417 1375
1418 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1376 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1419 int get hashCode => unwrap_jso(this).hashCode; 1377 int get hashCode => unwrap_jso(this).hashCode;
1420 1378
1421 } 1379 }
1422 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1423 // for details. All rights reserved. Use of this source code is governed by a 1381 // for details. All rights reserved. Use of this source code is governed by a
1424 // BSD-style license that can be found in the LICENSE file. 1382 // BSD-style license that can be found in the LICENSE file.
1425 1383
1426 // WARNING: Do not edit - generated code. 1384 // WARNING: Do not edit - generated code.
1427 1385
1428 1386
1429 @DocsEditable() 1387 @DocsEditable()
1430 @DomName('OESTextureFloatLinear') 1388 @DomName('OESTextureFloatLinear')
1431 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/ 1389 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/
1432 @Experimental() 1390 @Experimental()
1433 class OesTextureFloatLinear extends NativeFieldWrapperClass2 { 1391 class OesTextureFloatLinear extends DartHtmlDomObject {
1434 // To suppress missing implicit constructor warnings. 1392 // To suppress missing implicit constructor warnings.
1435 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported" ); } 1393 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported" ); }
1436 1394
1437 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() { 1395 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() {
1438 return new OesTextureFloatLinear._internalWrap(); 1396 return new OesTextureFloatLinear._internalWrap();
1439 } 1397 }
1440 1398
1441 js.JsObject blink_jsObject;
1442
1443 factory OesTextureFloatLinear._internalWrap() { 1399 factory OesTextureFloatLinear._internalWrap() {
1444 return new OesTextureFloatLinear.internal_(); 1400 return new OesTextureFloatLinear.internal_();
1445 } 1401 }
1446 1402
1447 OesTextureFloatLinear.internal_() { } 1403 OesTextureFloatLinear.internal_() { }
1448 1404
1449 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1405 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1450 int get hashCode => unwrap_jso(this).hashCode; 1406 int get hashCode => unwrap_jso(this).hashCode;
1451 1407
1452 } 1408 }
1453 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1409 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1454 // for details. All rights reserved. Use of this source code is governed by a 1410 // for details. All rights reserved. Use of this source code is governed by a
1455 // BSD-style license that can be found in the LICENSE file. 1411 // BSD-style license that can be found in the LICENSE file.
1456 1412
1457 // WARNING: Do not edit - generated code. 1413 // WARNING: Do not edit - generated code.
1458 1414
1459 1415
1460 @DocsEditable() 1416 @DocsEditable()
1461 @DomName('OESTextureHalfFloat') 1417 @DomName('OESTextureHalfFloat')
1462 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/ 1418 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/
1463 @Experimental() // experimental 1419 @Experimental() // experimental
1464 class OesTextureHalfFloat extends NativeFieldWrapperClass2 { 1420 class OesTextureHalfFloat extends DartHtmlDomObject {
1465 // To suppress missing implicit constructor warnings. 1421 // To suppress missing implicit constructor warnings.
1466 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported"); } 1422 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported"); }
1467 1423
1468 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() { 1424 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() {
1469 return new OesTextureHalfFloat._internalWrap(); 1425 return new OesTextureHalfFloat._internalWrap();
1470 } 1426 }
1471 1427
1472 js.JsObject blink_jsObject;
1473
1474 factory OesTextureHalfFloat._internalWrap() { 1428 factory OesTextureHalfFloat._internalWrap() {
1475 return new OesTextureHalfFloat.internal_(); 1429 return new OesTextureHalfFloat.internal_();
1476 } 1430 }
1477 1431
1478 OesTextureHalfFloat.internal_() { } 1432 OesTextureHalfFloat.internal_() { }
1479 1433
1480 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1434 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1481 int get hashCode => unwrap_jso(this).hashCode; 1435 int get hashCode => unwrap_jso(this).hashCode;
1482 1436
1483 @DomName('OESTextureHalfFloat.HALF_FLOAT_OES') 1437 @DomName('OESTextureHalfFloat.HALF_FLOAT_OES')
1484 @DocsEditable() 1438 @DocsEditable()
1485 static const int HALF_FLOAT_OES = 0x8D61; 1439 static const int HALF_FLOAT_OES = 0x8D61;
1486 1440
1487 } 1441 }
1488 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1442 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1489 // for details. All rights reserved. Use of this source code is governed by a 1443 // for details. All rights reserved. Use of this source code is governed by a
1490 // BSD-style license that can be found in the LICENSE file. 1444 // BSD-style license that can be found in the LICENSE file.
1491 1445
1492 // WARNING: Do not edit - generated code. 1446 // WARNING: Do not edit - generated code.
1493 1447
1494 1448
1495 @DocsEditable() 1449 @DocsEditable()
1496 @DomName('OESTextureHalfFloatLinear') 1450 @DomName('OESTextureHalfFloatLinear')
1497 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float_linea r/ 1451 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float_linea r/
1498 @Experimental() 1452 @Experimental()
1499 class OesTextureHalfFloatLinear extends NativeFieldWrapperClass2 { 1453 class OesTextureHalfFloatLinear extends DartHtmlDomObject {
1500 // To suppress missing implicit constructor warnings. 1454 // To suppress missing implicit constructor warnings.
1501 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor ted"); } 1455 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor ted"); }
1502 1456
1503 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() { 1457 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() {
1504 return new OesTextureHalfFloatLinear._internalWrap(); 1458 return new OesTextureHalfFloatLinear._internalWrap();
1505 } 1459 }
1506 1460
1507 js.JsObject blink_jsObject;
1508
1509 factory OesTextureHalfFloatLinear._internalWrap() { 1461 factory OesTextureHalfFloatLinear._internalWrap() {
1510 return new OesTextureHalfFloatLinear.internal_(); 1462 return new OesTextureHalfFloatLinear.internal_();
1511 } 1463 }
1512 1464
1513 OesTextureHalfFloatLinear.internal_() { } 1465 OesTextureHalfFloatLinear.internal_() { }
1514 1466
1515 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1467 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1516 int get hashCode => unwrap_jso(this).hashCode; 1468 int get hashCode => unwrap_jso(this).hashCode;
1517 1469
1518 } 1470 }
1519 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1520 // for details. All rights reserved. Use of this source code is governed by a 1472 // for details. All rights reserved. Use of this source code is governed by a
1521 // BSD-style license that can be found in the LICENSE file. 1473 // BSD-style license that can be found in the LICENSE file.
1522 1474
1523 // WARNING: Do not edit - generated code. 1475 // WARNING: Do not edit - generated code.
1524 1476
1525 1477
1526 @DocsEditable() 1478 @DocsEditable()
1527 @DomName('OESVertexArrayObject') 1479 @DomName('OESVertexArrayObject')
1528 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 1480 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
1529 @Experimental() // experimental 1481 @Experimental() // experimental
1530 class OesVertexArrayObject extends NativeFieldWrapperClass2 { 1482 class OesVertexArrayObject extends DartHtmlDomObject {
1531 // To suppress missing implicit constructor warnings. 1483 // To suppress missing implicit constructor warnings.
1532 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported") ; } 1484 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported") ; }
1533 1485
1534 static OesVertexArrayObject internalCreateOesVertexArrayObject() { 1486 static OesVertexArrayObject internalCreateOesVertexArrayObject() {
1535 return new OesVertexArrayObject._internalWrap(); 1487 return new OesVertexArrayObject._internalWrap();
1536 } 1488 }
1537 1489
1538 js.JsObject blink_jsObject;
1539
1540 factory OesVertexArrayObject._internalWrap() { 1490 factory OesVertexArrayObject._internalWrap() {
1541 return new OesVertexArrayObject.internal_(); 1491 return new OesVertexArrayObject.internal_();
1542 } 1492 }
1543 1493
1544 OesVertexArrayObject.internal_() { } 1494 OesVertexArrayObject.internal_() { }
1545 1495
1546 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1496 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1547 int get hashCode => unwrap_jso(this).hashCode; 1497 int get hashCode => unwrap_jso(this).hashCode;
1548 1498
1549 @DomName('OESVertexArrayObject.VERTEX_ARRAY_BINDING_OES') 1499 @DomName('OESVertexArrayObject.VERTEX_ARRAY_BINDING_OES')
(...skipping 20 matching lines...) Expand all
1570 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1520 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1571 // for details. All rights reserved. Use of this source code is governed by a 1521 // for details. All rights reserved. Use of this source code is governed by a
1572 // BSD-style license that can be found in the LICENSE file. 1522 // BSD-style license that can be found in the LICENSE file.
1573 1523
1574 // WARNING: Do not edit - generated code. 1524 // WARNING: Do not edit - generated code.
1575 1525
1576 1526
1577 @DocsEditable() 1527 @DocsEditable()
1578 @DomName('WebGLProgram') 1528 @DomName('WebGLProgram')
1579 @Unstable() 1529 @Unstable()
1580 class Program extends NativeFieldWrapperClass2 { 1530 class Program extends DartHtmlDomObject {
1581 // To suppress missing implicit constructor warnings. 1531 // To suppress missing implicit constructor warnings.
1582 factory Program._() { throw new UnsupportedError("Not supported"); } 1532 factory Program._() { throw new UnsupportedError("Not supported"); }
1583 1533
1584 static Program internalCreateProgram() { 1534 static Program internalCreateProgram() {
1585 return new Program._internalWrap(); 1535 return new Program._internalWrap();
1586 } 1536 }
1587 1537
1588 js.JsObject blink_jsObject;
1589
1590 factory Program._internalWrap() { 1538 factory Program._internalWrap() {
1591 return new Program.internal_(); 1539 return new Program.internal_();
1592 } 1540 }
1593 1541
1594 Program.internal_() { } 1542 Program.internal_() { }
1595 1543
1596 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1544 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1597 int get hashCode => unwrap_jso(this).hashCode; 1545 int get hashCode => unwrap_jso(this).hashCode;
1598 1546
1599 } 1547 }
1600 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1548 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1601 // for details. All rights reserved. Use of this source code is governed by a 1549 // for details. All rights reserved. Use of this source code is governed by a
1602 // BSD-style license that can be found in the LICENSE file. 1550 // BSD-style license that can be found in the LICENSE file.
1603 1551
1604 // WARNING: Do not edit - generated code. 1552 // WARNING: Do not edit - generated code.
1605 1553
1606 1554
1607 @DocsEditable() 1555 @DocsEditable()
1608 @DomName('WebGLRenderbuffer') 1556 @DomName('WebGLRenderbuffer')
1609 @Unstable() 1557 @Unstable()
1610 class Renderbuffer extends NativeFieldWrapperClass2 { 1558 class Renderbuffer extends DartHtmlDomObject {
1611 // To suppress missing implicit constructor warnings. 1559 // To suppress missing implicit constructor warnings.
1612 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); } 1560 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); }
1613 1561
1614 static Renderbuffer internalCreateRenderbuffer() { 1562 static Renderbuffer internalCreateRenderbuffer() {
1615 return new Renderbuffer._internalWrap(); 1563 return new Renderbuffer._internalWrap();
1616 } 1564 }
1617 1565
1618 js.JsObject blink_jsObject;
1619
1620 factory Renderbuffer._internalWrap() { 1566 factory Renderbuffer._internalWrap() {
1621 return new Renderbuffer.internal_(); 1567 return new Renderbuffer.internal_();
1622 } 1568 }
1623 1569
1624 Renderbuffer.internal_() { } 1570 Renderbuffer.internal_() { }
1625 1571
1626 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1572 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1627 int get hashCode => unwrap_jso(this).hashCode; 1573 int get hashCode => unwrap_jso(this).hashCode;
1628 1574
1629 } 1575 }
1630 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1576 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
1631 // for details. All rights reserved. Use of this source code is governed by a 1577 // for details. All rights reserved. Use of this source code is governed by a
1632 // BSD-style license that can be found in the LICENSE file. 1578 // BSD-style license that can be found in the LICENSE file.
1633 1579
1634 1580
1635 @DomName('WebGLRenderingContext') 1581 @DomName('WebGLRenderingContext')
1636 @SupportedBrowser(SupportedBrowser.CHROME) 1582 @SupportedBrowser(SupportedBrowser.CHROME)
1637 @SupportedBrowser(SupportedBrowser.FIREFOX) 1583 @SupportedBrowser(SupportedBrowser.FIREFOX)
1638 @Experimental() 1584 @Experimental()
1639 @Unstable() 1585 @Unstable()
1640 class RenderingContext extends NativeFieldWrapperClass2 implements CanvasRenderi ngContext { 1586 class RenderingContext extends DartHtmlDomObject implements CanvasRenderingConte xt {
1641 // To suppress missing implicit constructor warnings. 1587 // To suppress missing implicit constructor warnings.
1642 factory RenderingContext._() { throw new UnsupportedError("Not supported"); } 1588 factory RenderingContext._() { throw new UnsupportedError("Not supported"); }
1643 1589
1644 static RenderingContext internalCreateRenderingContext() { 1590 static RenderingContext internalCreateRenderingContext() {
1645 return new RenderingContext._internalWrap(); 1591 return new RenderingContext._internalWrap();
1646 } 1592 }
1647 1593
1648 js.JsObject blink_jsObject;
1649
1650 factory RenderingContext._internalWrap() { 1594 factory RenderingContext._internalWrap() {
1651 return new RenderingContext.internal_(); 1595 return new RenderingContext.internal_();
1652 } 1596 }
1653 1597
1654 RenderingContext.internal_() { } 1598 RenderingContext.internal_() { }
1655 1599
1656 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1600 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1657 int get hashCode => unwrap_jso(this).hashCode; 1601 int get hashCode => unwrap_jso(this).hashCode;
1658 1602
1659 /// Checks if this type is supported on the current platform. 1603 /// Checks if this type is supported on the current platform.
(...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after
3577 } 3521 }
3578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3522 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3579 // for details. All rights reserved. Use of this source code is governed by a 3523 // for details. All rights reserved. Use of this source code is governed by a
3580 // BSD-style license that can be found in the LICENSE file. 3524 // BSD-style license that can be found in the LICENSE file.
3581 3525
3582 // WARNING: Do not edit - generated code. 3526 // WARNING: Do not edit - generated code.
3583 3527
3584 3528
3585 @DocsEditable() 3529 @DocsEditable()
3586 @DomName('WebGLShader') 3530 @DomName('WebGLShader')
3587 class Shader extends NativeFieldWrapperClass2 { 3531 class Shader extends DartHtmlDomObject {
3588 // To suppress missing implicit constructor warnings. 3532 // To suppress missing implicit constructor warnings.
3589 factory Shader._() { throw new UnsupportedError("Not supported"); } 3533 factory Shader._() { throw new UnsupportedError("Not supported"); }
3590 3534
3591 static Shader internalCreateShader() { 3535 static Shader internalCreateShader() {
3592 return new Shader._internalWrap(); 3536 return new Shader._internalWrap();
3593 } 3537 }
3594 3538
3595 js.JsObject blink_jsObject;
3596
3597 factory Shader._internalWrap() { 3539 factory Shader._internalWrap() {
3598 return new Shader.internal_(); 3540 return new Shader.internal_();
3599 } 3541 }
3600 3542
3601 Shader.internal_() { } 3543 Shader.internal_() { }
3602 3544
3603 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3545 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3604 int get hashCode => unwrap_jso(this).hashCode; 3546 int get hashCode => unwrap_jso(this).hashCode;
3605 3547
3606 } 3548 }
3607 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3608 // for details. All rights reserved. Use of this source code is governed by a 3550 // for details. All rights reserved. Use of this source code is governed by a
3609 // BSD-style license that can be found in the LICENSE file. 3551 // BSD-style license that can be found in the LICENSE file.
3610 3552
3611 // WARNING: Do not edit - generated code. 3553 // WARNING: Do not edit - generated code.
3612 3554
3613 3555
3614 @DocsEditable() 3556 @DocsEditable()
3615 @DomName('WebGLShaderPrecisionFormat') 3557 @DomName('WebGLShaderPrecisionFormat')
3616 class ShaderPrecisionFormat extends NativeFieldWrapperClass2 { 3558 class ShaderPrecisionFormat extends DartHtmlDomObject {
3617 // To suppress missing implicit constructor warnings. 3559 // To suppress missing implicit constructor warnings.
3618 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported" ); } 3560 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported" ); }
3619 3561
3620 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() { 3562 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() {
3621 return new ShaderPrecisionFormat._internalWrap(); 3563 return new ShaderPrecisionFormat._internalWrap();
3622 } 3564 }
3623 3565
3624 js.JsObject blink_jsObject;
3625
3626 factory ShaderPrecisionFormat._internalWrap() { 3566 factory ShaderPrecisionFormat._internalWrap() {
3627 return new ShaderPrecisionFormat.internal_(); 3567 return new ShaderPrecisionFormat.internal_();
3628 } 3568 }
3629 3569
3630 ShaderPrecisionFormat.internal_() { } 3570 ShaderPrecisionFormat.internal_() { }
3631 3571
3632 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3572 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3633 int get hashCode => unwrap_jso(this).hashCode; 3573 int get hashCode => unwrap_jso(this).hashCode;
3634 3574
3635 @DomName('WebGLShaderPrecisionFormat.precision') 3575 @DomName('WebGLShaderPrecisionFormat.precision')
(...skipping 11 matching lines...) Expand all
3647 } 3587 }
3648 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3588 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3649 // for details. All rights reserved. Use of this source code is governed by a 3589 // for details. All rights reserved. Use of this source code is governed by a
3650 // BSD-style license that can be found in the LICENSE file. 3590 // BSD-style license that can be found in the LICENSE file.
3651 3591
3652 // WARNING: Do not edit - generated code. 3592 // WARNING: Do not edit - generated code.
3653 3593
3654 3594
3655 @DocsEditable() 3595 @DocsEditable()
3656 @DomName('WebGLTexture') 3596 @DomName('WebGLTexture')
3657 class Texture extends NativeFieldWrapperClass2 { 3597 class Texture extends DartHtmlDomObject {
3658 // To suppress missing implicit constructor warnings. 3598 // To suppress missing implicit constructor warnings.
3659 factory Texture._() { throw new UnsupportedError("Not supported"); } 3599 factory Texture._() { throw new UnsupportedError("Not supported"); }
3660 3600
3661 static Texture internalCreateTexture() { 3601 static Texture internalCreateTexture() {
3662 return new Texture._internalWrap(); 3602 return new Texture._internalWrap();
3663 } 3603 }
3664 3604
3665 js.JsObject blink_jsObject;
3666
3667 factory Texture._internalWrap() { 3605 factory Texture._internalWrap() {
3668 return new Texture.internal_(); 3606 return new Texture.internal_();
3669 } 3607 }
3670 3608
3671 Texture.internal_() { } 3609 Texture.internal_() { }
3672 3610
3673 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3611 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3674 int get hashCode => unwrap_jso(this).hashCode; 3612 int get hashCode => unwrap_jso(this).hashCode;
3675 3613
3676 } 3614 }
3677 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3678 // for details. All rights reserved. Use of this source code is governed by a 3616 // for details. All rights reserved. Use of this source code is governed by a
3679 // BSD-style license that can be found in the LICENSE file. 3617 // BSD-style license that can be found in the LICENSE file.
3680 3618
3681 // WARNING: Do not edit - generated code. 3619 // WARNING: Do not edit - generated code.
3682 3620
3683 3621
3684 @DocsEditable() 3622 @DocsEditable()
3685 @DomName('WebGLUniformLocation') 3623 @DomName('WebGLUniformLocation')
3686 class UniformLocation extends NativeFieldWrapperClass2 { 3624 class UniformLocation extends DartHtmlDomObject {
3687 // To suppress missing implicit constructor warnings. 3625 // To suppress missing implicit constructor warnings.
3688 factory UniformLocation._() { throw new UnsupportedError("Not supported"); } 3626 factory UniformLocation._() { throw new UnsupportedError("Not supported"); }
3689 3627
3690 static UniformLocation internalCreateUniformLocation() { 3628 static UniformLocation internalCreateUniformLocation() {
3691 return new UniformLocation._internalWrap(); 3629 return new UniformLocation._internalWrap();
3692 } 3630 }
3693 3631
3694 js.JsObject blink_jsObject;
3695
3696 factory UniformLocation._internalWrap() { 3632 factory UniformLocation._internalWrap() {
3697 return new UniformLocation.internal_(); 3633 return new UniformLocation.internal_();
3698 } 3634 }
3699 3635
3700 UniformLocation.internal_() { } 3636 UniformLocation.internal_() { }
3701 3637
3702 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3638 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3703 int get hashCode => unwrap_jso(this).hashCode; 3639 int get hashCode => unwrap_jso(this).hashCode;
3704 3640
3705 } 3641 }
3706 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3642 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3707 // for details. All rights reserved. Use of this source code is governed by a 3643 // for details. All rights reserved. Use of this source code is governed by a
3708 // BSD-style license that can be found in the LICENSE file. 3644 // BSD-style license that can be found in the LICENSE file.
3709 3645
3710 // WARNING: Do not edit - generated code. 3646 // WARNING: Do not edit - generated code.
3711 3647
3712 3648
3713 @DocsEditable() 3649 @DocsEditable()
3714 @DomName('WebGLVertexArrayObjectOES') 3650 @DomName('WebGLVertexArrayObjectOES')
3715 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 3651 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
3716 @Experimental() // experimental 3652 @Experimental() // experimental
3717 class VertexArrayObject extends NativeFieldWrapperClass2 { 3653 class VertexArrayObject extends DartHtmlDomObject {
3718 // To suppress missing implicit constructor warnings. 3654 // To suppress missing implicit constructor warnings.
3719 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } 3655 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); }
3720 3656
3721 static VertexArrayObject internalCreateVertexArrayObject() { 3657 static VertexArrayObject internalCreateVertexArrayObject() {
3722 return new VertexArrayObject._internalWrap(); 3658 return new VertexArrayObject._internalWrap();
3723 } 3659 }
3724 3660
3725 js.JsObject blink_jsObject;
3726
3727 factory VertexArrayObject._internalWrap() { 3661 factory VertexArrayObject._internalWrap() {
3728 return new VertexArrayObject.internal_(); 3662 return new VertexArrayObject.internal_();
3729 } 3663 }
3730 3664
3731 VertexArrayObject.internal_() { } 3665 VertexArrayObject.internal_() { }
3732 3666
3733 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3667 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3734 int get hashCode => unwrap_jso(this).hashCode; 3668 int get hashCode => unwrap_jso(this).hashCode;
3735 3669
3736 } 3670 }
3737 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3738 // for details. All rights reserved. Use of this source code is governed by a 3672 // for details. All rights reserved. Use of this source code is governed by a
3739 // BSD-style license that can be found in the LICENSE file. 3673 // BSD-style license that can be found in the LICENSE file.
3740 3674
3741 // WARNING: Do not edit - generated code. 3675 // WARNING: Do not edit - generated code.
3742 3676
3743 3677
3744 @DocsEditable() 3678 @DocsEditable()
3745 @DomName('WebGLRenderingContextBase') 3679 @DomName('WebGLRenderingContextBase')
3746 @Experimental() // untriaged 3680 @Experimental() // untriaged
3747 class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { 3681 class _WebGLRenderingContextBase extends DartHtmlDomObject {
3748 // To suppress missing implicit constructor warnings. 3682 // To suppress missing implicit constructor warnings.
3749 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); } 3683 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo rted"); }
3750 3684
3751 } 3685 }
OLDNEW
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | sdk/lib/web_sql/dartium/web_sql_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698