OLD | NEW |
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' hide deprecated; | 8 import 'dart:_internal' hide deprecated; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 JsObject blink_jsObject = null; | 419 JsObject blink_jsObject = null; |
420 | 420 |
421 factory ActiveInfo._internalWrap() { | 421 factory ActiveInfo._internalWrap() { |
422 return new ActiveInfo._internal(); | 422 return new ActiveInfo.internal_(); |
423 } | 423 } |
424 | 424 |
425 ActiveInfo._internal() { } | 425 ActiveInfo.internal_() { } |
426 | 426 |
427 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 427 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
428 | 428 |
429 @DomName('WebGLActiveInfo.name') | 429 @DomName('WebGLActiveInfo.name') |
430 @DocsEditable() | 430 @DocsEditable() |
431 String get name => _blink.BlinkWebGLActiveInfo.instance.name_Getter_(unwrap_js
o(this)); | 431 String get name => _blink.BlinkWebGLActiveInfo.instance.name_Getter_(unwrap_js
o(this)); |
432 | 432 |
433 @DomName('WebGLActiveInfo.size') | 433 @DomName('WebGLActiveInfo.size') |
434 @DocsEditable() | 434 @DocsEditable() |
435 int get size => _blink.BlinkWebGLActiveInfo.instance.size_Getter_(unwrap_jso(t
his)); | 435 int get size => _blink.BlinkWebGLActiveInfo.instance.size_Getter_(unwrap_jso(t
his)); |
(...skipping 17 matching lines...) Expand all Loading... |
453 // To suppress missing implicit constructor warnings. | 453 // To suppress missing implicit constructor warnings. |
454 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported")
; } | 454 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported")
; } |
455 | 455 |
456 static AngleInstancedArrays internalCreateAngleInstancedArrays() { | 456 static AngleInstancedArrays internalCreateAngleInstancedArrays() { |
457 return new AngleInstancedArrays._internalWrap(); | 457 return new AngleInstancedArrays._internalWrap(); |
458 } | 458 } |
459 | 459 |
460 JsObject blink_jsObject = null; | 460 JsObject blink_jsObject = null; |
461 | 461 |
462 factory AngleInstancedArrays._internalWrap() { | 462 factory AngleInstancedArrays._internalWrap() { |
463 return new AngleInstancedArrays._internal(); | 463 return new AngleInstancedArrays.internal_(); |
464 } | 464 } |
465 | 465 |
466 AngleInstancedArrays._internal() { } | 466 AngleInstancedArrays.internal_() { } |
467 | 467 |
468 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 468 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
469 | 469 |
470 @DomName('ANGLEInstancedArrays.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE') | 470 @DomName('ANGLEInstancedArrays.VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE') |
471 @DocsEditable() | 471 @DocsEditable() |
472 @Experimental() // untriaged | 472 @Experimental() // untriaged |
473 static const int VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE = 0x88FE; | 473 static const int VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE = 0x88FE; |
474 | 474 |
475 @DomName('ANGLEInstancedArrays.drawArraysInstancedANGLE') | 475 @DomName('ANGLEInstancedArrays.drawArraysInstancedANGLE') |
476 @DocsEditable() | 476 @DocsEditable() |
(...skipping 25 matching lines...) Expand all Loading... |
502 // To suppress missing implicit constructor warnings. | 502 // To suppress missing implicit constructor warnings. |
503 factory Buffer._() { throw new UnsupportedError("Not supported"); } | 503 factory Buffer._() { throw new UnsupportedError("Not supported"); } |
504 | 504 |
505 static Buffer internalCreateBuffer() { | 505 static Buffer internalCreateBuffer() { |
506 return new Buffer._internalWrap(); | 506 return new Buffer._internalWrap(); |
507 } | 507 } |
508 | 508 |
509 JsObject blink_jsObject = null; | 509 JsObject blink_jsObject = null; |
510 | 510 |
511 factory Buffer._internalWrap() { | 511 factory Buffer._internalWrap() { |
512 return new Buffer._internal(); | 512 return new Buffer.internal_(); |
513 } | 513 } |
514 | 514 |
515 Buffer._internal() { } | 515 Buffer.internal_() { } |
516 | 516 |
517 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 517 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
518 | 518 |
519 } | 519 } |
520 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 520 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
521 // for details. All rights reserved. Use of this source code is governed by a | 521 // for details. All rights reserved. Use of this source code is governed by a |
522 // BSD-style license that can be found in the LICENSE file. | 522 // BSD-style license that can be found in the LICENSE file. |
523 | 523 |
524 // WARNING: Do not edit - generated code. | 524 // WARNING: Do not edit - generated code. |
525 | 525 |
526 | 526 |
527 @DocsEditable() | 527 @DocsEditable() |
528 @DomName('WebGLCompressedTextureATC') | 528 @DomName('WebGLCompressedTextureATC') |
529 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc
/ | 529 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc
/ |
530 @Experimental() | 530 @Experimental() |
531 class CompressedTextureAtc extends NativeFieldWrapperClass2 { | 531 class CompressedTextureAtc extends NativeFieldWrapperClass2 { |
532 // To suppress missing implicit constructor warnings. | 532 // To suppress missing implicit constructor warnings. |
533 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported")
; } | 533 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported")
; } |
534 | 534 |
535 static CompressedTextureAtc internalCreateCompressedTextureAtc() { | 535 static CompressedTextureAtc internalCreateCompressedTextureAtc() { |
536 return new CompressedTextureAtc._internalWrap(); | 536 return new CompressedTextureAtc._internalWrap(); |
537 } | 537 } |
538 | 538 |
539 JsObject blink_jsObject = null; | 539 JsObject blink_jsObject = null; |
540 | 540 |
541 factory CompressedTextureAtc._internalWrap() { | 541 factory CompressedTextureAtc._internalWrap() { |
542 return new CompressedTextureAtc._internal(); | 542 return new CompressedTextureAtc.internal_(); |
543 } | 543 } |
544 | 544 |
545 CompressedTextureAtc._internal() { } | 545 CompressedTextureAtc.internal_() { } |
546 | 546 |
547 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 547 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
548 | 548 |
549 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL') | 549 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL') |
550 @DocsEditable() | 550 @DocsEditable() |
551 static const int COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL = 0x8C93; | 551 static const int COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL = 0x8C93; |
552 | 552 |
553 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEB
GL') | 553 @DomName('WebGLCompressedTextureATC.COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEB
GL') |
554 @DocsEditable() | 554 @DocsEditable() |
555 static const int COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL = 0x87EE; | 555 static const int COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL = 0x87EE; |
(...skipping 17 matching lines...) Expand all Loading... |
573 // To suppress missing implicit constructor warnings. | 573 // To suppress missing implicit constructor warnings. |
574 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported"
); } | 574 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported"
); } |
575 | 575 |
576 static CompressedTextureETC1 internalCreateCompressedTextureETC1() { | 576 static CompressedTextureETC1 internalCreateCompressedTextureETC1() { |
577 return new CompressedTextureETC1._internalWrap(); | 577 return new CompressedTextureETC1._internalWrap(); |
578 } | 578 } |
579 | 579 |
580 JsObject blink_jsObject = null; | 580 JsObject blink_jsObject = null; |
581 | 581 |
582 factory CompressedTextureETC1._internalWrap() { | 582 factory CompressedTextureETC1._internalWrap() { |
583 return new CompressedTextureETC1._internal(); | 583 return new CompressedTextureETC1.internal_(); |
584 } | 584 } |
585 | 585 |
586 CompressedTextureETC1._internal() { } | 586 CompressedTextureETC1.internal_() { } |
587 | 587 |
588 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 588 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
589 | 589 |
590 @DomName('WebGLCompressedTextureETC1.COMPRESSED_RGB_ETC1_WEBGL') | 590 @DomName('WebGLCompressedTextureETC1.COMPRESSED_RGB_ETC1_WEBGL') |
591 @DocsEditable() | 591 @DocsEditable() |
592 @Experimental() // untriaged | 592 @Experimental() // untriaged |
593 static const int COMPRESSED_RGB_ETC1_WEBGL = 0x8D64; | 593 static const int COMPRESSED_RGB_ETC1_WEBGL = 0x8D64; |
594 | 594 |
595 } | 595 } |
596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 596 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
(...skipping 11 matching lines...) Expand all Loading... |
608 // To suppress missing implicit constructor warnings. | 608 // To suppress missing implicit constructor warnings. |
609 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported
"); } | 609 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported
"); } |
610 | 610 |
611 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() { | 611 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() { |
612 return new CompressedTexturePvrtc._internalWrap(); | 612 return new CompressedTexturePvrtc._internalWrap(); |
613 } | 613 } |
614 | 614 |
615 JsObject blink_jsObject = null; | 615 JsObject blink_jsObject = null; |
616 | 616 |
617 factory CompressedTexturePvrtc._internalWrap() { | 617 factory CompressedTexturePvrtc._internalWrap() { |
618 return new CompressedTexturePvrtc._internal(); | 618 return new CompressedTexturePvrtc.internal_(); |
619 } | 619 } |
620 | 620 |
621 CompressedTexturePvrtc._internal() { } | 621 CompressedTexturePvrtc.internal_() { } |
622 | 622 |
623 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 623 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
624 | 624 |
625 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG') | 625 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG') |
626 @DocsEditable() | 626 @DocsEditable() |
627 static const int COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03; | 627 static const int COMPRESSED_RGBA_PVRTC_2BPPV1_IMG = 0x8C03; |
628 | 628 |
629 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG') | 629 @DomName('WebGLCompressedTexturePVRTC.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG') |
630 @DocsEditable() | 630 @DocsEditable() |
631 static const int COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02; | 631 static const int COMPRESSED_RGBA_PVRTC_4BPPV1_IMG = 0x8C02; |
(...skipping 22 matching lines...) Expand all Loading... |
654 // To suppress missing implicit constructor warnings. | 654 // To suppress missing implicit constructor warnings. |
655 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported"
); } | 655 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported"
); } |
656 | 656 |
657 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() { | 657 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() { |
658 return new CompressedTextureS3TC._internalWrap(); | 658 return new CompressedTextureS3TC._internalWrap(); |
659 } | 659 } |
660 | 660 |
661 JsObject blink_jsObject = null; | 661 JsObject blink_jsObject = null; |
662 | 662 |
663 factory CompressedTextureS3TC._internalWrap() { | 663 factory CompressedTextureS3TC._internalWrap() { |
664 return new CompressedTextureS3TC._internal(); | 664 return new CompressedTextureS3TC.internal_(); |
665 } | 665 } |
666 | 666 |
667 CompressedTextureS3TC._internal() { } | 667 CompressedTextureS3TC.internal_() { } |
668 | 668 |
669 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 669 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
670 | 670 |
671 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT1_EXT') | 671 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT1_EXT') |
672 @DocsEditable() | 672 @DocsEditable() |
673 static const int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; | 673 static const int COMPRESSED_RGBA_S3TC_DXT1_EXT = 0x83F1; |
674 | 674 |
675 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT3_EXT') | 675 @DomName('WebGLCompressedTextureS3TC.COMPRESSED_RGBA_S3TC_DXT3_EXT') |
676 @DocsEditable() | 676 @DocsEditable() |
677 static const int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; | 677 static const int COMPRESSED_RGBA_S3TC_DXT3_EXT = 0x83F2; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 // To suppress missing implicit constructor warnings. | 721 // To suppress missing implicit constructor warnings. |
722 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); } | 722 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); } |
723 | 723 |
724 static ContextAttributes internalCreateContextAttributes() { | 724 static ContextAttributes internalCreateContextAttributes() { |
725 return new ContextAttributes._internalWrap(); | 725 return new ContextAttributes._internalWrap(); |
726 } | 726 } |
727 | 727 |
728 JsObject blink_jsObject = null; | 728 JsObject blink_jsObject = null; |
729 | 729 |
730 factory ContextAttributes._internalWrap() { | 730 factory ContextAttributes._internalWrap() { |
731 return new ContextAttributes._internal(); | 731 return new ContextAttributes.internal_(); |
732 } | 732 } |
733 | 733 |
734 ContextAttributes._internal() { } | 734 ContextAttributes.internal_() { } |
735 | 735 |
736 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 736 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
737 | 737 |
738 @DomName('WebGLContextAttributes.alpha') | 738 @DomName('WebGLContextAttributes.alpha') |
739 @DocsEditable() | 739 @DocsEditable() |
740 bool get alpha => _blink.BlinkWebGLContextAttributes.instance.alpha_Getter_(un
wrap_jso(this)); | 740 bool get alpha => _blink.BlinkWebGLContextAttributes.instance.alpha_Getter_(un
wrap_jso(this)); |
741 | 741 |
742 @DomName('WebGLContextAttributes.alpha') | 742 @DomName('WebGLContextAttributes.alpha') |
743 @DocsEditable() | 743 @DocsEditable() |
744 void set alpha(bool value) => _blink.BlinkWebGLContextAttributes.instance.alph
a_Setter_(unwrap_jso(this), value); | 744 void set alpha(bool value) => _blink.BlinkWebGLContextAttributes.instance.alph
a_Setter_(unwrap_jso(this), value); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 class ContextEvent extends Event { | 807 class ContextEvent extends Event { |
808 // To suppress missing implicit constructor warnings. | 808 // To suppress missing implicit constructor warnings. |
809 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } | 809 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } |
810 | 810 |
811 | 811 |
812 static ContextEvent internalCreateContextEvent() { | 812 static ContextEvent internalCreateContextEvent() { |
813 return new ContextEvent._internalWrap(); | 813 return new ContextEvent._internalWrap(); |
814 } | 814 } |
815 | 815 |
816 factory ContextEvent._internalWrap() { | 816 factory ContextEvent._internalWrap() { |
817 return new ContextEvent._internal(); | 817 return new ContextEvent.internal_(); |
818 } | 818 } |
819 | 819 |
820 ContextEvent._internal() : super._internal(); | 820 ContextEvent.internal_() : super.internal_(); |
821 | 821 |
822 | 822 |
823 @DomName('WebGLContextEvent.statusMessage') | 823 @DomName('WebGLContextEvent.statusMessage') |
824 @DocsEditable() | 824 @DocsEditable() |
825 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa
ge_Getter_(unwrap_jso(this)); | 825 String get statusMessage => _blink.BlinkWebGLContextEvent.instance.statusMessa
ge_Getter_(unwrap_jso(this)); |
826 | 826 |
827 } | 827 } |
828 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 828 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
829 // for details. All rights reserved. Use of this source code is governed by a | 829 // for details. All rights reserved. Use of this source code is governed by a |
830 // BSD-style license that can be found in the LICENSE file. | 830 // BSD-style license that can be found in the LICENSE file. |
831 | 831 |
832 // WARNING: Do not edit - generated code. | 832 // WARNING: Do not edit - generated code. |
833 | 833 |
834 | 834 |
835 @DocsEditable() | 835 @DocsEditable() |
836 @DomName('WebGLDebugRendererInfo') | 836 @DomName('WebGLDebugRendererInfo') |
837 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/ | 837 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/ |
838 @Experimental() // experimental | 838 @Experimental() // experimental |
839 class DebugRendererInfo extends NativeFieldWrapperClass2 { | 839 class DebugRendererInfo extends NativeFieldWrapperClass2 { |
840 // To suppress missing implicit constructor warnings. | 840 // To suppress missing implicit constructor warnings. |
841 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); } | 841 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); } |
842 | 842 |
843 static DebugRendererInfo internalCreateDebugRendererInfo() { | 843 static DebugRendererInfo internalCreateDebugRendererInfo() { |
844 return new DebugRendererInfo._internalWrap(); | 844 return new DebugRendererInfo._internalWrap(); |
845 } | 845 } |
846 | 846 |
847 JsObject blink_jsObject = null; | 847 JsObject blink_jsObject = null; |
848 | 848 |
849 factory DebugRendererInfo._internalWrap() { | 849 factory DebugRendererInfo._internalWrap() { |
850 return new DebugRendererInfo._internal(); | 850 return new DebugRendererInfo.internal_(); |
851 } | 851 } |
852 | 852 |
853 DebugRendererInfo._internal() { } | 853 DebugRendererInfo.internal_() { } |
854 | 854 |
855 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 855 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
856 | 856 |
857 @DomName('WebGLDebugRendererInfo.UNMASKED_RENDERER_WEBGL') | 857 @DomName('WebGLDebugRendererInfo.UNMASKED_RENDERER_WEBGL') |
858 @DocsEditable() | 858 @DocsEditable() |
859 static const int UNMASKED_RENDERER_WEBGL = 0x9246; | 859 static const int UNMASKED_RENDERER_WEBGL = 0x9246; |
860 | 860 |
861 @DomName('WebGLDebugRendererInfo.UNMASKED_VENDOR_WEBGL') | 861 @DomName('WebGLDebugRendererInfo.UNMASKED_VENDOR_WEBGL') |
862 @DocsEditable() | 862 @DocsEditable() |
863 static const int UNMASKED_VENDOR_WEBGL = 0x9245; | 863 static const int UNMASKED_VENDOR_WEBGL = 0x9245; |
(...skipping 14 matching lines...) Expand all Loading... |
878 // To suppress missing implicit constructor warnings. | 878 // To suppress missing implicit constructor warnings. |
879 factory DebugShaders._() { throw new UnsupportedError("Not supported"); } | 879 factory DebugShaders._() { throw new UnsupportedError("Not supported"); } |
880 | 880 |
881 static DebugShaders internalCreateDebugShaders() { | 881 static DebugShaders internalCreateDebugShaders() { |
882 return new DebugShaders._internalWrap(); | 882 return new DebugShaders._internalWrap(); |
883 } | 883 } |
884 | 884 |
885 JsObject blink_jsObject = null; | 885 JsObject blink_jsObject = null; |
886 | 886 |
887 factory DebugShaders._internalWrap() { | 887 factory DebugShaders._internalWrap() { |
888 return new DebugShaders._internal(); | 888 return new DebugShaders.internal_(); |
889 } | 889 } |
890 | 890 |
891 DebugShaders._internal() { } | 891 DebugShaders.internal_() { } |
892 | 892 |
893 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 893 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
894 | 894 |
895 @DomName('WebGLDebugShaders.getTranslatedShaderSource') | 895 @DomName('WebGLDebugShaders.getTranslatedShaderSource') |
896 @DocsEditable() | 896 @DocsEditable() |
897 String getTranslatedShaderSource(Shader shader) => _blink.BlinkWebGLDebugShade
rs.instance.getTranslatedShaderSource_Callback_1_(unwrap_jso(this), unwrap_jso(s
hader)); | 897 String getTranslatedShaderSource(Shader shader) => _blink.BlinkWebGLDebugShade
rs.instance.getTranslatedShaderSource_Callback_1_(unwrap_jso(this), unwrap_jso(s
hader)); |
898 | 898 |
899 } | 899 } |
900 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 900 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
901 // for details. All rights reserved. Use of this source code is governed by a | 901 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 10 matching lines...) Expand all Loading... |
912 // To suppress missing implicit constructor warnings. | 912 // To suppress missing implicit constructor warnings. |
913 factory DepthTexture._() { throw new UnsupportedError("Not supported"); } | 913 factory DepthTexture._() { throw new UnsupportedError("Not supported"); } |
914 | 914 |
915 static DepthTexture internalCreateDepthTexture() { | 915 static DepthTexture internalCreateDepthTexture() { |
916 return new DepthTexture._internalWrap(); | 916 return new DepthTexture._internalWrap(); |
917 } | 917 } |
918 | 918 |
919 JsObject blink_jsObject = null; | 919 JsObject blink_jsObject = null; |
920 | 920 |
921 factory DepthTexture._internalWrap() { | 921 factory DepthTexture._internalWrap() { |
922 return new DepthTexture._internal(); | 922 return new DepthTexture.internal_(); |
923 } | 923 } |
924 | 924 |
925 DepthTexture._internal() { } | 925 DepthTexture.internal_() { } |
926 | 926 |
927 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 927 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
928 | 928 |
929 @DomName('WebGLDepthTexture.UNSIGNED_INT_24_8_WEBGL') | 929 @DomName('WebGLDepthTexture.UNSIGNED_INT_24_8_WEBGL') |
930 @DocsEditable() | 930 @DocsEditable() |
931 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA; | 931 static const int UNSIGNED_INT_24_8_WEBGL = 0x84FA; |
932 | 932 |
933 } | 933 } |
934 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 934 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
935 // for details. All rights reserved. Use of this source code is governed by a | 935 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 10 matching lines...) Expand all Loading... |
946 // To suppress missing implicit constructor warnings. | 946 // To suppress missing implicit constructor warnings. |
947 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); } | 947 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); } |
948 | 948 |
949 static DrawBuffers internalCreateDrawBuffers() { | 949 static DrawBuffers internalCreateDrawBuffers() { |
950 return new DrawBuffers._internalWrap(); | 950 return new DrawBuffers._internalWrap(); |
951 } | 951 } |
952 | 952 |
953 JsObject blink_jsObject = null; | 953 JsObject blink_jsObject = null; |
954 | 954 |
955 factory DrawBuffers._internalWrap() { | 955 factory DrawBuffers._internalWrap() { |
956 return new DrawBuffers._internal(); | 956 return new DrawBuffers.internal_(); |
957 } | 957 } |
958 | 958 |
959 DrawBuffers._internal() { } | 959 DrawBuffers.internal_() { } |
960 | 960 |
961 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 961 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
962 | 962 |
963 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT0_WEBGL') | 963 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT0_WEBGL') |
964 @DocsEditable() | 964 @DocsEditable() |
965 static const int COLOR_ATTACHMENT0_WEBGL = 0x8CE0; | 965 static const int COLOR_ATTACHMENT0_WEBGL = 0x8CE0; |
966 | 966 |
967 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT10_WEBGL') | 967 @DomName('WebGLDrawBuffers.COLOR_ATTACHMENT10_WEBGL') |
968 @DocsEditable() | 968 @DocsEditable() |
969 static const int COLOR_ATTACHMENT10_WEBGL = 0x8CEA; | 969 static const int COLOR_ATTACHMENT10_WEBGL = 0x8CEA; |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1115 // To suppress missing implicit constructor warnings. | 1115 // To suppress missing implicit constructor warnings. |
1116 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } | 1116 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } |
1117 | 1117 |
1118 static ExtBlendMinMax internalCreateExtBlendMinMax() { | 1118 static ExtBlendMinMax internalCreateExtBlendMinMax() { |
1119 return new ExtBlendMinMax._internalWrap(); | 1119 return new ExtBlendMinMax._internalWrap(); |
1120 } | 1120 } |
1121 | 1121 |
1122 JsObject blink_jsObject = null; | 1122 JsObject blink_jsObject = null; |
1123 | 1123 |
1124 factory ExtBlendMinMax._internalWrap() { | 1124 factory ExtBlendMinMax._internalWrap() { |
1125 return new ExtBlendMinMax._internal(); | 1125 return new ExtBlendMinMax.internal_(); |
1126 } | 1126 } |
1127 | 1127 |
1128 ExtBlendMinMax._internal() { } | 1128 ExtBlendMinMax.internal_() { } |
1129 | 1129 |
1130 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1130 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1131 | 1131 |
1132 @DomName('EXTBlendMinMax.MAX_EXT') | 1132 @DomName('EXTBlendMinMax.MAX_EXT') |
1133 @DocsEditable() | 1133 @DocsEditable() |
1134 @Experimental() // untriaged | 1134 @Experimental() // untriaged |
1135 static const int MAX_EXT = 0x8008; | 1135 static const int MAX_EXT = 0x8008; |
1136 | 1136 |
1137 @DomName('EXTBlendMinMax.MIN_EXT') | 1137 @DomName('EXTBlendMinMax.MIN_EXT') |
1138 @DocsEditable() | 1138 @DocsEditable() |
(...skipping 16 matching lines...) Expand all Loading... |
1155 // To suppress missing implicit constructor warnings. | 1155 // To suppress missing implicit constructor warnings. |
1156 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); } | 1156 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); } |
1157 | 1157 |
1158 static ExtFragDepth internalCreateExtFragDepth() { | 1158 static ExtFragDepth internalCreateExtFragDepth() { |
1159 return new ExtFragDepth._internalWrap(); | 1159 return new ExtFragDepth._internalWrap(); |
1160 } | 1160 } |
1161 | 1161 |
1162 JsObject blink_jsObject = null; | 1162 JsObject blink_jsObject = null; |
1163 | 1163 |
1164 factory ExtFragDepth._internalWrap() { | 1164 factory ExtFragDepth._internalWrap() { |
1165 return new ExtFragDepth._internal(); | 1165 return new ExtFragDepth.internal_(); |
1166 } | 1166 } |
1167 | 1167 |
1168 ExtFragDepth._internal() { } | 1168 ExtFragDepth.internal_() { } |
1169 | 1169 |
1170 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1170 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1171 | 1171 |
1172 } | 1172 } |
1173 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1173 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1174 // for details. All rights reserved. Use of this source code is governed by a | 1174 // for details. All rights reserved. Use of this source code is governed by a |
1175 // BSD-style license that can be found in the LICENSE file. | 1175 // BSD-style license that can be found in the LICENSE file. |
1176 | 1176 |
1177 // WARNING: Do not edit - generated code. | 1177 // WARNING: Do not edit - generated code. |
1178 | 1178 |
1179 | 1179 |
1180 @DocsEditable() | 1180 @DocsEditable() |
1181 @DomName('EXTShaderTextureLOD') | 1181 @DomName('EXTShaderTextureLOD') |
1182 @Experimental() // untriaged | 1182 @Experimental() // untriaged |
1183 class ExtShaderTextureLod extends NativeFieldWrapperClass2 { | 1183 class ExtShaderTextureLod extends NativeFieldWrapperClass2 { |
1184 // To suppress missing implicit constructor warnings. | 1184 // To suppress missing implicit constructor warnings. |
1185 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported");
} | 1185 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported");
} |
1186 | 1186 |
1187 static ExtShaderTextureLod internalCreateExtShaderTextureLod() { | 1187 static ExtShaderTextureLod internalCreateExtShaderTextureLod() { |
1188 return new ExtShaderTextureLod._internalWrap(); | 1188 return new ExtShaderTextureLod._internalWrap(); |
1189 } | 1189 } |
1190 | 1190 |
1191 JsObject blink_jsObject = null; | 1191 JsObject blink_jsObject = null; |
1192 | 1192 |
1193 factory ExtShaderTextureLod._internalWrap() { | 1193 factory ExtShaderTextureLod._internalWrap() { |
1194 return new ExtShaderTextureLod._internal(); | 1194 return new ExtShaderTextureLod.internal_(); |
1195 } | 1195 } |
1196 | 1196 |
1197 ExtShaderTextureLod._internal() { } | 1197 ExtShaderTextureLod.internal_() { } |
1198 | 1198 |
1199 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1199 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1200 | 1200 |
1201 } | 1201 } |
1202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1202 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1203 // for details. All rights reserved. Use of this source code is governed by a | 1203 // for details. All rights reserved. Use of this source code is governed by a |
1204 // BSD-style license that can be found in the LICENSE file. | 1204 // BSD-style license that can be found in the LICENSE file. |
1205 | 1205 |
1206 // WARNING: Do not edit - generated code. | 1206 // WARNING: Do not edit - generated code. |
1207 | 1207 |
1208 | 1208 |
1209 @DocsEditable() | 1209 @DocsEditable() |
1210 @DomName('EXTTextureFilterAnisotropic') | 1210 @DomName('EXTTextureFilterAnisotropic') |
1211 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop
ic/ | 1211 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop
ic/ |
1212 @Experimental() | 1212 @Experimental() |
1213 class ExtTextureFilterAnisotropic extends NativeFieldWrapperClass2 { | 1213 class ExtTextureFilterAnisotropic extends NativeFieldWrapperClass2 { |
1214 // To suppress missing implicit constructor warnings. | 1214 // To suppress missing implicit constructor warnings. |
1215 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp
orted"); } | 1215 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp
orted"); } |
1216 | 1216 |
1217 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic()
{ | 1217 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic()
{ |
1218 return new ExtTextureFilterAnisotropic._internalWrap(); | 1218 return new ExtTextureFilterAnisotropic._internalWrap(); |
1219 } | 1219 } |
1220 | 1220 |
1221 JsObject blink_jsObject = null; | 1221 JsObject blink_jsObject = null; |
1222 | 1222 |
1223 factory ExtTextureFilterAnisotropic._internalWrap() { | 1223 factory ExtTextureFilterAnisotropic._internalWrap() { |
1224 return new ExtTextureFilterAnisotropic._internal(); | 1224 return new ExtTextureFilterAnisotropic.internal_(); |
1225 } | 1225 } |
1226 | 1226 |
1227 ExtTextureFilterAnisotropic._internal() { } | 1227 ExtTextureFilterAnisotropic.internal_() { } |
1228 | 1228 |
1229 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1229 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1230 | 1230 |
1231 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT') | 1231 @DomName('EXTTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT') |
1232 @DocsEditable() | 1232 @DocsEditable() |
1233 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; | 1233 static const int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF; |
1234 | 1234 |
1235 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT') | 1235 @DomName('EXTTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT') |
1236 @DocsEditable() | 1236 @DocsEditable() |
1237 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; | 1237 static const int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE; |
(...skipping 13 matching lines...) Expand all Loading... |
1251 // To suppress missing implicit constructor warnings. | 1251 // To suppress missing implicit constructor warnings. |
1252 factory Framebuffer._() { throw new UnsupportedError("Not supported"); } | 1252 factory Framebuffer._() { throw new UnsupportedError("Not supported"); } |
1253 | 1253 |
1254 static Framebuffer internalCreateFramebuffer() { | 1254 static Framebuffer internalCreateFramebuffer() { |
1255 return new Framebuffer._internalWrap(); | 1255 return new Framebuffer._internalWrap(); |
1256 } | 1256 } |
1257 | 1257 |
1258 JsObject blink_jsObject = null; | 1258 JsObject blink_jsObject = null; |
1259 | 1259 |
1260 factory Framebuffer._internalWrap() { | 1260 factory Framebuffer._internalWrap() { |
1261 return new Framebuffer._internal(); | 1261 return new Framebuffer.internal_(); |
1262 } | 1262 } |
1263 | 1263 |
1264 Framebuffer._internal() { } | 1264 Framebuffer.internal_() { } |
1265 | 1265 |
1266 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1266 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1267 | 1267 |
1268 } | 1268 } |
1269 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1269 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1270 // for details. All rights reserved. Use of this source code is governed by a | 1270 // for details. All rights reserved. Use of this source code is governed by a |
1271 // BSD-style license that can be found in the LICENSE file. | 1271 // BSD-style license that can be found in the LICENSE file. |
1272 | 1272 |
1273 // WARNING: Do not edit - generated code. | 1273 // WARNING: Do not edit - generated code. |
1274 | 1274 |
1275 | 1275 |
1276 @DocsEditable() | 1276 @DocsEditable() |
1277 @DomName('WebGLLoseContext') | 1277 @DomName('WebGLLoseContext') |
1278 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/ | 1278 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/ |
1279 @Experimental() | 1279 @Experimental() |
1280 class LoseContext extends NativeFieldWrapperClass2 { | 1280 class LoseContext extends NativeFieldWrapperClass2 { |
1281 // To suppress missing implicit constructor warnings. | 1281 // To suppress missing implicit constructor warnings. |
1282 factory LoseContext._() { throw new UnsupportedError("Not supported"); } | 1282 factory LoseContext._() { throw new UnsupportedError("Not supported"); } |
1283 | 1283 |
1284 static LoseContext internalCreateLoseContext() { | 1284 static LoseContext internalCreateLoseContext() { |
1285 return new LoseContext._internalWrap(); | 1285 return new LoseContext._internalWrap(); |
1286 } | 1286 } |
1287 | 1287 |
1288 JsObject blink_jsObject = null; | 1288 JsObject blink_jsObject = null; |
1289 | 1289 |
1290 factory LoseContext._internalWrap() { | 1290 factory LoseContext._internalWrap() { |
1291 return new LoseContext._internal(); | 1291 return new LoseContext.internal_(); |
1292 } | 1292 } |
1293 | 1293 |
1294 LoseContext._internal() { } | 1294 LoseContext.internal_() { } |
1295 | 1295 |
1296 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1296 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1297 | 1297 |
1298 @DomName('WebGLLoseContext.loseContext') | 1298 @DomName('WebGLLoseContext.loseContext') |
1299 @DocsEditable() | 1299 @DocsEditable() |
1300 void loseContext() => _blink.BlinkWebGLLoseContext.instance.loseContext_Callba
ck_0_(unwrap_jso(this)); | 1300 void loseContext() => _blink.BlinkWebGLLoseContext.instance.loseContext_Callba
ck_0_(unwrap_jso(this)); |
1301 | 1301 |
1302 @DomName('WebGLLoseContext.restoreContext') | 1302 @DomName('WebGLLoseContext.restoreContext') |
1303 @DocsEditable() | 1303 @DocsEditable() |
1304 void restoreContext() => _blink.BlinkWebGLLoseContext.instance.restoreContext_
Callback_0_(unwrap_jso(this)); | 1304 void restoreContext() => _blink.BlinkWebGLLoseContext.instance.restoreContext_
Callback_0_(unwrap_jso(this)); |
(...skipping 14 matching lines...) Expand all Loading... |
1319 // To suppress missing implicit constructor warnings. | 1319 // To suppress missing implicit constructor warnings. |
1320 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported");
} | 1320 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported");
} |
1321 | 1321 |
1322 static OesElementIndexUint internalCreateOesElementIndexUint() { | 1322 static OesElementIndexUint internalCreateOesElementIndexUint() { |
1323 return new OesElementIndexUint._internalWrap(); | 1323 return new OesElementIndexUint._internalWrap(); |
1324 } | 1324 } |
1325 | 1325 |
1326 JsObject blink_jsObject = null; | 1326 JsObject blink_jsObject = null; |
1327 | 1327 |
1328 factory OesElementIndexUint._internalWrap() { | 1328 factory OesElementIndexUint._internalWrap() { |
1329 return new OesElementIndexUint._internal(); | 1329 return new OesElementIndexUint.internal_(); |
1330 } | 1330 } |
1331 | 1331 |
1332 OesElementIndexUint._internal() { } | 1332 OesElementIndexUint.internal_() { } |
1333 | 1333 |
1334 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1334 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1335 | 1335 |
1336 } | 1336 } |
1337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1337 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1338 // for details. All rights reserved. Use of this source code is governed by a | 1338 // for details. All rights reserved. Use of this source code is governed by a |
1339 // BSD-style license that can be found in the LICENSE file. | 1339 // BSD-style license that can be found in the LICENSE file. |
1340 | 1340 |
1341 // WARNING: Do not edit - generated code. | 1341 // WARNING: Do not edit - generated code. |
1342 | 1342 |
1343 | 1343 |
1344 @DocsEditable() | 1344 @DocsEditable() |
1345 @DomName('OESStandardDerivatives') | 1345 @DomName('OESStandardDerivatives') |
1346 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/ | 1346 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/ |
1347 @Experimental() // experimental | 1347 @Experimental() // experimental |
1348 class OesStandardDerivatives extends NativeFieldWrapperClass2 { | 1348 class OesStandardDerivatives extends NativeFieldWrapperClass2 { |
1349 // To suppress missing implicit constructor warnings. | 1349 // To suppress missing implicit constructor warnings. |
1350 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported
"); } | 1350 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported
"); } |
1351 | 1351 |
1352 static OesStandardDerivatives internalCreateOesStandardDerivatives() { | 1352 static OesStandardDerivatives internalCreateOesStandardDerivatives() { |
1353 return new OesStandardDerivatives._internalWrap(); | 1353 return new OesStandardDerivatives._internalWrap(); |
1354 } | 1354 } |
1355 | 1355 |
1356 JsObject blink_jsObject = null; | 1356 JsObject blink_jsObject = null; |
1357 | 1357 |
1358 factory OesStandardDerivatives._internalWrap() { | 1358 factory OesStandardDerivatives._internalWrap() { |
1359 return new OesStandardDerivatives._internal(); | 1359 return new OesStandardDerivatives.internal_(); |
1360 } | 1360 } |
1361 | 1361 |
1362 OesStandardDerivatives._internal() { } | 1362 OesStandardDerivatives.internal_() { } |
1363 | 1363 |
1364 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1364 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1365 | 1365 |
1366 @DomName('OESStandardDerivatives.FRAGMENT_SHADER_DERIVATIVE_HINT_OES') | 1366 @DomName('OESStandardDerivatives.FRAGMENT_SHADER_DERIVATIVE_HINT_OES') |
1367 @DocsEditable() | 1367 @DocsEditable() |
1368 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; | 1368 static const int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; |
1369 | 1369 |
1370 } | 1370 } |
1371 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1371 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1372 // for details. All rights reserved. Use of this source code is governed by a | 1372 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 10 matching lines...) Expand all Loading... |
1383 // To suppress missing implicit constructor warnings. | 1383 // To suppress missing implicit constructor warnings. |
1384 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); } | 1384 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); } |
1385 | 1385 |
1386 static OesTextureFloat internalCreateOesTextureFloat() { | 1386 static OesTextureFloat internalCreateOesTextureFloat() { |
1387 return new OesTextureFloat._internalWrap(); | 1387 return new OesTextureFloat._internalWrap(); |
1388 } | 1388 } |
1389 | 1389 |
1390 JsObject blink_jsObject = null; | 1390 JsObject blink_jsObject = null; |
1391 | 1391 |
1392 factory OesTextureFloat._internalWrap() { | 1392 factory OesTextureFloat._internalWrap() { |
1393 return new OesTextureFloat._internal(); | 1393 return new OesTextureFloat.internal_(); |
1394 } | 1394 } |
1395 | 1395 |
1396 OesTextureFloat._internal() { } | 1396 OesTextureFloat.internal_() { } |
1397 | 1397 |
1398 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1398 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1399 | 1399 |
1400 } | 1400 } |
1401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1401 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1402 // for details. All rights reserved. Use of this source code is governed by a | 1402 // for details. All rights reserved. Use of this source code is governed by a |
1403 // BSD-style license that can be found in the LICENSE file. | 1403 // BSD-style license that can be found in the LICENSE file. |
1404 | 1404 |
1405 // WARNING: Do not edit - generated code. | 1405 // WARNING: Do not edit - generated code. |
1406 | 1406 |
1407 | 1407 |
1408 @DocsEditable() | 1408 @DocsEditable() |
1409 @DomName('OESTextureFloatLinear') | 1409 @DomName('OESTextureFloatLinear') |
1410 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/ | 1410 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/ |
1411 @Experimental() | 1411 @Experimental() |
1412 class OesTextureFloatLinear extends NativeFieldWrapperClass2 { | 1412 class OesTextureFloatLinear extends NativeFieldWrapperClass2 { |
1413 // To suppress missing implicit constructor warnings. | 1413 // To suppress missing implicit constructor warnings. |
1414 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported"
); } | 1414 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported"
); } |
1415 | 1415 |
1416 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() { | 1416 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() { |
1417 return new OesTextureFloatLinear._internalWrap(); | 1417 return new OesTextureFloatLinear._internalWrap(); |
1418 } | 1418 } |
1419 | 1419 |
1420 JsObject blink_jsObject = null; | 1420 JsObject blink_jsObject = null; |
1421 | 1421 |
1422 factory OesTextureFloatLinear._internalWrap() { | 1422 factory OesTextureFloatLinear._internalWrap() { |
1423 return new OesTextureFloatLinear._internal(); | 1423 return new OesTextureFloatLinear.internal_(); |
1424 } | 1424 } |
1425 | 1425 |
1426 OesTextureFloatLinear._internal() { } | 1426 OesTextureFloatLinear.internal_() { } |
1427 | 1427 |
1428 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1428 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1429 | 1429 |
1430 } | 1430 } |
1431 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1431 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1432 // for details. All rights reserved. Use of this source code is governed by a | 1432 // for details. All rights reserved. Use of this source code is governed by a |
1433 // BSD-style license that can be found in the LICENSE file. | 1433 // BSD-style license that can be found in the LICENSE file. |
1434 | 1434 |
1435 // WARNING: Do not edit - generated code. | 1435 // WARNING: Do not edit - generated code. |
1436 | 1436 |
1437 | 1437 |
1438 @DocsEditable() | 1438 @DocsEditable() |
1439 @DomName('OESTextureHalfFloat') | 1439 @DomName('OESTextureHalfFloat') |
1440 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/ | 1440 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/ |
1441 @Experimental() // experimental | 1441 @Experimental() // experimental |
1442 class OesTextureHalfFloat extends NativeFieldWrapperClass2 { | 1442 class OesTextureHalfFloat extends NativeFieldWrapperClass2 { |
1443 // To suppress missing implicit constructor warnings. | 1443 // To suppress missing implicit constructor warnings. |
1444 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported");
} | 1444 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported");
} |
1445 | 1445 |
1446 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() { | 1446 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() { |
1447 return new OesTextureHalfFloat._internalWrap(); | 1447 return new OesTextureHalfFloat._internalWrap(); |
1448 } | 1448 } |
1449 | 1449 |
1450 JsObject blink_jsObject = null; | 1450 JsObject blink_jsObject = null; |
1451 | 1451 |
1452 factory OesTextureHalfFloat._internalWrap() { | 1452 factory OesTextureHalfFloat._internalWrap() { |
1453 return new OesTextureHalfFloat._internal(); | 1453 return new OesTextureHalfFloat.internal_(); |
1454 } | 1454 } |
1455 | 1455 |
1456 OesTextureHalfFloat._internal() { } | 1456 OesTextureHalfFloat.internal_() { } |
1457 | 1457 |
1458 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1458 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1459 | 1459 |
1460 @DomName('OESTextureHalfFloat.HALF_FLOAT_OES') | 1460 @DomName('OESTextureHalfFloat.HALF_FLOAT_OES') |
1461 @DocsEditable() | 1461 @DocsEditable() |
1462 static const int HALF_FLOAT_OES = 0x8D61; | 1462 static const int HALF_FLOAT_OES = 0x8D61; |
1463 | 1463 |
1464 } | 1464 } |
1465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1465 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1466 // for details. All rights reserved. Use of this source code is governed by a | 1466 // for details. All rights reserved. Use of this source code is governed by a |
(...skipping 10 matching lines...) Expand all Loading... |
1477 // To suppress missing implicit constructor warnings. | 1477 // To suppress missing implicit constructor warnings. |
1478 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor
ted"); } | 1478 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor
ted"); } |
1479 | 1479 |
1480 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() { | 1480 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() { |
1481 return new OesTextureHalfFloatLinear._internalWrap(); | 1481 return new OesTextureHalfFloatLinear._internalWrap(); |
1482 } | 1482 } |
1483 | 1483 |
1484 JsObject blink_jsObject = null; | 1484 JsObject blink_jsObject = null; |
1485 | 1485 |
1486 factory OesTextureHalfFloatLinear._internalWrap() { | 1486 factory OesTextureHalfFloatLinear._internalWrap() { |
1487 return new OesTextureHalfFloatLinear._internal(); | 1487 return new OesTextureHalfFloatLinear.internal_(); |
1488 } | 1488 } |
1489 | 1489 |
1490 OesTextureHalfFloatLinear._internal() { } | 1490 OesTextureHalfFloatLinear.internal_() { } |
1491 | 1491 |
1492 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1492 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1493 | 1493 |
1494 } | 1494 } |
1495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1495 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1496 // for details. All rights reserved. Use of this source code is governed by a | 1496 // for details. All rights reserved. Use of this source code is governed by a |
1497 // BSD-style license that can be found in the LICENSE file. | 1497 // BSD-style license that can be found in the LICENSE file. |
1498 | 1498 |
1499 // WARNING: Do not edit - generated code. | 1499 // WARNING: Do not edit - generated code. |
1500 | 1500 |
1501 | 1501 |
1502 @DocsEditable() | 1502 @DocsEditable() |
1503 @DomName('OESVertexArrayObject') | 1503 @DomName('OESVertexArrayObject') |
1504 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 1504 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
1505 @Experimental() // experimental | 1505 @Experimental() // experimental |
1506 class OesVertexArrayObject extends NativeFieldWrapperClass2 { | 1506 class OesVertexArrayObject extends NativeFieldWrapperClass2 { |
1507 // To suppress missing implicit constructor warnings. | 1507 // To suppress missing implicit constructor warnings. |
1508 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported")
; } | 1508 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported")
; } |
1509 | 1509 |
1510 static OesVertexArrayObject internalCreateOesVertexArrayObject() { | 1510 static OesVertexArrayObject internalCreateOesVertexArrayObject() { |
1511 return new OesVertexArrayObject._internalWrap(); | 1511 return new OesVertexArrayObject._internalWrap(); |
1512 } | 1512 } |
1513 | 1513 |
1514 JsObject blink_jsObject = null; | 1514 JsObject blink_jsObject = null; |
1515 | 1515 |
1516 factory OesVertexArrayObject._internalWrap() { | 1516 factory OesVertexArrayObject._internalWrap() { |
1517 return new OesVertexArrayObject._internal(); | 1517 return new OesVertexArrayObject.internal_(); |
1518 } | 1518 } |
1519 | 1519 |
1520 OesVertexArrayObject._internal() { } | 1520 OesVertexArrayObject.internal_() { } |
1521 | 1521 |
1522 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1522 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1523 | 1523 |
1524 @DomName('OESVertexArrayObject.VERTEX_ARRAY_BINDING_OES') | 1524 @DomName('OESVertexArrayObject.VERTEX_ARRAY_BINDING_OES') |
1525 @DocsEditable() | 1525 @DocsEditable() |
1526 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; | 1526 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
1527 | 1527 |
1528 @DomName('OESVertexArrayObject.bindVertexArrayOES') | 1528 @DomName('OESVertexArrayObject.bindVertexArrayOES') |
1529 @DocsEditable() | 1529 @DocsEditable() |
1530 void bindVertexArray(VertexArrayObject arrayObject) => _blink.BlinkOESVertexAr
rayObject.instance.bindVertexArrayOES_Callback_1_(unwrap_jso(this), unwrap_jso(a
rrayObject)); | 1530 void bindVertexArray(VertexArrayObject arrayObject) => _blink.BlinkOESVertexAr
rayObject.instance.bindVertexArrayOES_Callback_1_(unwrap_jso(this), unwrap_jso(a
rrayObject)); |
(...skipping 25 matching lines...) Expand all Loading... |
1556 // To suppress missing implicit constructor warnings. | 1556 // To suppress missing implicit constructor warnings. |
1557 factory Program._() { throw new UnsupportedError("Not supported"); } | 1557 factory Program._() { throw new UnsupportedError("Not supported"); } |
1558 | 1558 |
1559 static Program internalCreateProgram() { | 1559 static Program internalCreateProgram() { |
1560 return new Program._internalWrap(); | 1560 return new Program._internalWrap(); |
1561 } | 1561 } |
1562 | 1562 |
1563 JsObject blink_jsObject = null; | 1563 JsObject blink_jsObject = null; |
1564 | 1564 |
1565 factory Program._internalWrap() { | 1565 factory Program._internalWrap() { |
1566 return new Program._internal(); | 1566 return new Program.internal_(); |
1567 } | 1567 } |
1568 | 1568 |
1569 Program._internal() { } | 1569 Program.internal_() { } |
1570 | 1570 |
1571 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1571 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1572 | 1572 |
1573 } | 1573 } |
1574 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1574 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1575 // for details. All rights reserved. Use of this source code is governed by a | 1575 // for details. All rights reserved. Use of this source code is governed by a |
1576 // BSD-style license that can be found in the LICENSE file. | 1576 // BSD-style license that can be found in the LICENSE file. |
1577 | 1577 |
1578 // WARNING: Do not edit - generated code. | 1578 // WARNING: Do not edit - generated code. |
1579 | 1579 |
1580 | 1580 |
1581 @DocsEditable() | 1581 @DocsEditable() |
1582 @DomName('WebGLRenderbuffer') | 1582 @DomName('WebGLRenderbuffer') |
1583 @Unstable() | 1583 @Unstable() |
1584 class Renderbuffer extends NativeFieldWrapperClass2 { | 1584 class Renderbuffer extends NativeFieldWrapperClass2 { |
1585 // To suppress missing implicit constructor warnings. | 1585 // To suppress missing implicit constructor warnings. |
1586 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); } | 1586 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); } |
1587 | 1587 |
1588 static Renderbuffer internalCreateRenderbuffer() { | 1588 static Renderbuffer internalCreateRenderbuffer() { |
1589 return new Renderbuffer._internalWrap(); | 1589 return new Renderbuffer._internalWrap(); |
1590 } | 1590 } |
1591 | 1591 |
1592 JsObject blink_jsObject = null; | 1592 JsObject blink_jsObject = null; |
1593 | 1593 |
1594 factory Renderbuffer._internalWrap() { | 1594 factory Renderbuffer._internalWrap() { |
1595 return new Renderbuffer._internal(); | 1595 return new Renderbuffer.internal_(); |
1596 } | 1596 } |
1597 | 1597 |
1598 Renderbuffer._internal() { } | 1598 Renderbuffer.internal_() { } |
1599 | 1599 |
1600 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); |
1601 | 1601 |
1602 } | 1602 } |
1603 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1603 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
1604 // for details. All rights reserved. Use of this source code is governed by a | 1604 // for details. All rights reserved. Use of this source code is governed by a |
1605 // BSD-style license that can be found in the LICENSE file. | 1605 // BSD-style license that can be found in the LICENSE file. |
1606 | 1606 |
1607 | 1607 |
1608 @DomName('WebGLRenderingContext') | 1608 @DomName('WebGLRenderingContext') |
1609 @SupportedBrowser(SupportedBrowser.CHROME) | 1609 @SupportedBrowser(SupportedBrowser.CHROME) |
1610 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1610 @SupportedBrowser(SupportedBrowser.FIREFOX) |
1611 @Experimental() | 1611 @Experimental() |
1612 @Unstable() | 1612 @Unstable() |
1613 class RenderingContext extends NativeFieldWrapperClass2 implements CanvasRenderi
ngContext { | 1613 class RenderingContext extends NativeFieldWrapperClass2 implements CanvasRenderi
ngContext { |
1614 // To suppress missing implicit constructor warnings. | 1614 // To suppress missing implicit constructor warnings. |
1615 factory RenderingContext._() { throw new UnsupportedError("Not supported"); } | 1615 factory RenderingContext._() { throw new UnsupportedError("Not supported"); } |
1616 | 1616 |
1617 static RenderingContext internalCreateRenderingContext() { | 1617 static RenderingContext internalCreateRenderingContext() { |
1618 return new RenderingContext._internalWrap(); | 1618 return new RenderingContext._internalWrap(); |
1619 } | 1619 } |
1620 | 1620 |
1621 JsObject blink_jsObject = null; | 1621 JsObject blink_jsObject = null; |
1622 | 1622 |
1623 factory RenderingContext._internalWrap() { | 1623 factory RenderingContext._internalWrap() { |
1624 return new RenderingContext._internal(); | 1624 return new RenderingContext.internal_(); |
1625 } | 1625 } |
1626 | 1626 |
1627 RenderingContext._internal() { } | 1627 RenderingContext.internal_() { } |
1628 | 1628 |
1629 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1629 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1630 | 1630 |
1631 /// Checks if this type is supported on the current platform. | 1631 /// Checks if this type is supported on the current platform. |
1632 static bool get supported => true; | 1632 static bool get supported => true; |
1633 | 1633 |
1634 @DomName('WebGLRenderingContext.ACTIVE_ATTRIBUTES') | 1634 @DomName('WebGLRenderingContext.ACTIVE_ATTRIBUTES') |
1635 @DocsEditable() | 1635 @DocsEditable() |
1636 static const int ACTIVE_ATTRIBUTES = 0x8B89; | 1636 static const int ACTIVE_ATTRIBUTES = 0x8B89; |
1637 | 1637 |
(...skipping 1922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3560 // To suppress missing implicit constructor warnings. | 3560 // To suppress missing implicit constructor warnings. |
3561 factory Shader._() { throw new UnsupportedError("Not supported"); } | 3561 factory Shader._() { throw new UnsupportedError("Not supported"); } |
3562 | 3562 |
3563 static Shader internalCreateShader() { | 3563 static Shader internalCreateShader() { |
3564 return new Shader._internalWrap(); | 3564 return new Shader._internalWrap(); |
3565 } | 3565 } |
3566 | 3566 |
3567 JsObject blink_jsObject = null; | 3567 JsObject blink_jsObject = null; |
3568 | 3568 |
3569 factory Shader._internalWrap() { | 3569 factory Shader._internalWrap() { |
3570 return new Shader._internal(); | 3570 return new Shader.internal_(); |
3571 } | 3571 } |
3572 | 3572 |
3573 Shader._internal() { } | 3573 Shader.internal_() { } |
3574 | 3574 |
3575 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3575 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3576 | 3576 |
3577 } | 3577 } |
3578 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3578 // 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 | 3579 // 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. | 3580 // BSD-style license that can be found in the LICENSE file. |
3581 | 3581 |
3582 // WARNING: Do not edit - generated code. | 3582 // WARNING: Do not edit - generated code. |
3583 | 3583 |
3584 | 3584 |
3585 @DocsEditable() | 3585 @DocsEditable() |
3586 @DomName('WebGLShaderPrecisionFormat') | 3586 @DomName('WebGLShaderPrecisionFormat') |
3587 class ShaderPrecisionFormat extends NativeFieldWrapperClass2 { | 3587 class ShaderPrecisionFormat extends NativeFieldWrapperClass2 { |
3588 // To suppress missing implicit constructor warnings. | 3588 // To suppress missing implicit constructor warnings. |
3589 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported"
); } | 3589 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported"
); } |
3590 | 3590 |
3591 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() { | 3591 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() { |
3592 return new ShaderPrecisionFormat._internalWrap(); | 3592 return new ShaderPrecisionFormat._internalWrap(); |
3593 } | 3593 } |
3594 | 3594 |
3595 JsObject blink_jsObject = null; | 3595 JsObject blink_jsObject = null; |
3596 | 3596 |
3597 factory ShaderPrecisionFormat._internalWrap() { | 3597 factory ShaderPrecisionFormat._internalWrap() { |
3598 return new ShaderPrecisionFormat._internal(); | 3598 return new ShaderPrecisionFormat.internal_(); |
3599 } | 3599 } |
3600 | 3600 |
3601 ShaderPrecisionFormat._internal() { } | 3601 ShaderPrecisionFormat.internal_() { } |
3602 | 3602 |
3603 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3603 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3604 | 3604 |
3605 @DomName('WebGLShaderPrecisionFormat.precision') | 3605 @DomName('WebGLShaderPrecisionFormat.precision') |
3606 @DocsEditable() | 3606 @DocsEditable() |
3607 int get precision => _blink.BlinkWebGLShaderPrecisionFormat.instance.precision
_Getter_(unwrap_jso(this)); | 3607 int get precision => _blink.BlinkWebGLShaderPrecisionFormat.instance.precision
_Getter_(unwrap_jso(this)); |
3608 | 3608 |
3609 @DomName('WebGLShaderPrecisionFormat.rangeMax') | 3609 @DomName('WebGLShaderPrecisionFormat.rangeMax') |
3610 @DocsEditable() | 3610 @DocsEditable() |
3611 int get rangeMax => _blink.BlinkWebGLShaderPrecisionFormat.instance.rangeMax_G
etter_(unwrap_jso(this)); | 3611 int get rangeMax => _blink.BlinkWebGLShaderPrecisionFormat.instance.rangeMax_G
etter_(unwrap_jso(this)); |
(...skipping 16 matching lines...) Expand all Loading... |
3628 // To suppress missing implicit constructor warnings. | 3628 // To suppress missing implicit constructor warnings. |
3629 factory Texture._() { throw new UnsupportedError("Not supported"); } | 3629 factory Texture._() { throw new UnsupportedError("Not supported"); } |
3630 | 3630 |
3631 static Texture internalCreateTexture() { | 3631 static Texture internalCreateTexture() { |
3632 return new Texture._internalWrap(); | 3632 return new Texture._internalWrap(); |
3633 } | 3633 } |
3634 | 3634 |
3635 JsObject blink_jsObject = null; | 3635 JsObject blink_jsObject = null; |
3636 | 3636 |
3637 factory Texture._internalWrap() { | 3637 factory Texture._internalWrap() { |
3638 return new Texture._internal(); | 3638 return new Texture.internal_(); |
3639 } | 3639 } |
3640 | 3640 |
3641 Texture._internal() { } | 3641 Texture.internal_() { } |
3642 | 3642 |
3643 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3643 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3644 | 3644 |
3645 } | 3645 } |
3646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3646 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3647 // for details. All rights reserved. Use of this source code is governed by a | 3647 // for details. All rights reserved. Use of this source code is governed by a |
3648 // BSD-style license that can be found in the LICENSE file. | 3648 // BSD-style license that can be found in the LICENSE file. |
3649 | 3649 |
3650 // WARNING: Do not edit - generated code. | 3650 // WARNING: Do not edit - generated code. |
3651 | 3651 |
3652 | 3652 |
3653 @DocsEditable() | 3653 @DocsEditable() |
3654 @DomName('WebGLUniformLocation') | 3654 @DomName('WebGLUniformLocation') |
3655 class UniformLocation extends NativeFieldWrapperClass2 { | 3655 class UniformLocation extends NativeFieldWrapperClass2 { |
3656 // To suppress missing implicit constructor warnings. | 3656 // To suppress missing implicit constructor warnings. |
3657 factory UniformLocation._() { throw new UnsupportedError("Not supported"); } | 3657 factory UniformLocation._() { throw new UnsupportedError("Not supported"); } |
3658 | 3658 |
3659 static UniformLocation internalCreateUniformLocation() { | 3659 static UniformLocation internalCreateUniformLocation() { |
3660 return new UniformLocation._internalWrap(); | 3660 return new UniformLocation._internalWrap(); |
3661 } | 3661 } |
3662 | 3662 |
3663 JsObject blink_jsObject = null; | 3663 JsObject blink_jsObject = null; |
3664 | 3664 |
3665 factory UniformLocation._internalWrap() { | 3665 factory UniformLocation._internalWrap() { |
3666 return new UniformLocation._internal(); | 3666 return new UniformLocation.internal_(); |
3667 } | 3667 } |
3668 | 3668 |
3669 UniformLocation._internal() { } | 3669 UniformLocation.internal_() { } |
3670 | 3670 |
3671 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3671 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3672 | 3672 |
3673 } | 3673 } |
3674 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3674 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3675 // for details. All rights reserved. Use of this source code is governed by a | 3675 // for details. All rights reserved. Use of this source code is governed by a |
3676 // BSD-style license that can be found in the LICENSE file. | 3676 // BSD-style license that can be found in the LICENSE file. |
3677 | 3677 |
3678 // WARNING: Do not edit - generated code. | 3678 // WARNING: Do not edit - generated code. |
3679 | 3679 |
3680 | 3680 |
3681 @DocsEditable() | 3681 @DocsEditable() |
3682 @DomName('WebGLVertexArrayObjectOES') | 3682 @DomName('WebGLVertexArrayObjectOES') |
3683 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 3683 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
3684 @Experimental() // experimental | 3684 @Experimental() // experimental |
3685 class VertexArrayObject extends NativeFieldWrapperClass2 { | 3685 class VertexArrayObject extends NativeFieldWrapperClass2 { |
3686 // To suppress missing implicit constructor warnings. | 3686 // To suppress missing implicit constructor warnings. |
3687 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 3687 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
3688 | 3688 |
3689 static VertexArrayObject internalCreateVertexArrayObject() { | 3689 static VertexArrayObject internalCreateVertexArrayObject() { |
3690 return new VertexArrayObject._internalWrap(); | 3690 return new VertexArrayObject._internalWrap(); |
3691 } | 3691 } |
3692 | 3692 |
3693 JsObject blink_jsObject = null; | 3693 JsObject blink_jsObject = null; |
3694 | 3694 |
3695 factory VertexArrayObject._internalWrap() { | 3695 factory VertexArrayObject._internalWrap() { |
3696 return new VertexArrayObject._internal(); | 3696 return new VertexArrayObject.internal_(); |
3697 } | 3697 } |
3698 | 3698 |
3699 VertexArrayObject._internal() { } | 3699 VertexArrayObject.internal_() { } |
3700 | 3700 |
3701 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3701 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3702 | 3702 |
3703 } | 3703 } |
3704 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3704 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3705 // for details. All rights reserved. Use of this source code is governed by a | 3705 // for details. All rights reserved. Use of this source code is governed by a |
3706 // BSD-style license that can be found in the LICENSE file. | 3706 // BSD-style license that can be found in the LICENSE file. |
3707 | 3707 |
3708 // WARNING: Do not edit - generated code. | 3708 // WARNING: Do not edit - generated code. |
3709 | 3709 |
3710 | 3710 |
3711 @DocsEditable() | 3711 @DocsEditable() |
3712 @DomName('WebGLRenderingContextBase') | 3712 @DomName('WebGLRenderingContextBase') |
3713 @Experimental() // untriaged | 3713 @Experimental() // untriaged |
3714 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { | 3714 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { |
3715 // To suppress missing implicit constructor warnings. | 3715 // To suppress missing implicit constructor warnings. |
3716 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } | 3716 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } |
3717 | 3717 |
3718 static _WebGLRenderingContextBase internalCreate_WebGLRenderingContextBase() { | 3718 static _WebGLRenderingContextBase internalCreate_WebGLRenderingContextBase() { |
3719 return new _WebGLRenderingContextBase._internalWrap(); | 3719 return new _WebGLRenderingContextBase._internalWrap(); |
3720 } | 3720 } |
3721 | 3721 |
3722 JsObject blink_jsObject = null; | 3722 JsObject blink_jsObject = null; |
3723 | 3723 |
3724 factory _WebGLRenderingContextBase._internalWrap() { | 3724 factory _WebGLRenderingContextBase._internalWrap() { |
3725 return new _WebGLRenderingContextBase._internal(); | 3725 return new _WebGLRenderingContextBase.internal_(); |
3726 } | 3726 } |
3727 | 3727 |
3728 _WebGLRenderingContextBase._internal() { } | 3728 _WebGLRenderingContextBase.internal_() { } |
3729 | 3729 |
3730 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3730 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3731 | 3731 |
3732 } | 3732 } |
OLD | NEW |