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'; | 8 import 'dart:_internal'; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
11 import 'dart:nativewrappers'; | 11 import 'dart:nativewrappers'; |
12 import 'dart:typed_data'; | 12 import 'dart:typed_data'; |
13 import 'dart:_blink' as _blink; | 13 import 'dart:_blink' as _blink; |
14 import 'dart:js' as js; | 14 import 'dart:js' as js; |
15 // DO NOT EDIT | 15 // DO NOT EDIT |
16 // Auto-generated dart:web_gl library. | 16 // Auto-generated dart:web_gl library. |
17 | 17 |
18 | 18 |
19 | 19 |
20 | 20 |
21 | 21 |
22 // FIXME: Can we make this private? | 22 // FIXME: Can we make this private? |
| 23 @Deprecated("Internal Use Only") |
23 final web_glBlinkMap = { | 24 final web_glBlinkMap = { |
24 'ANGLEInstancedArrays': () => AngleInstancedArrays, | 25 'ANGLEInstancedArrays': () => AngleInstancedArrays, |
25 'EXTBlendMinMax': () => ExtBlendMinMax, | 26 'EXTBlendMinMax': () => ExtBlendMinMax, |
26 'EXTFragDepth': () => ExtFragDepth, | 27 'EXTFragDepth': () => ExtFragDepth, |
27 'EXTShaderTextureLOD': () => ExtShaderTextureLod, | 28 'EXTShaderTextureLOD': () => ExtShaderTextureLod, |
28 'EXTTextureFilterAnisotropic': () => ExtTextureFilterAnisotropic, | 29 'EXTTextureFilterAnisotropic': () => ExtTextureFilterAnisotropic, |
29 'OESElementIndexUint': () => OesElementIndexUint, | 30 'OESElementIndexUint': () => OesElementIndexUint, |
30 'OESStandardDerivatives': () => OesStandardDerivatives, | 31 'OESStandardDerivatives': () => OesStandardDerivatives, |
31 'OESTextureFloat': () => OesTextureFloat, | 32 'OESTextureFloat': () => OesTextureFloat, |
32 'OESTextureFloatLinear': () => OesTextureFloatLinear, | 33 'OESTextureFloatLinear': () => OesTextureFloatLinear, |
(...skipping 20 matching lines...) Expand all Loading... |
53 'WebGLRenderingContextBase': () => _WebGLRenderingContextBase, | 54 'WebGLRenderingContextBase': () => _WebGLRenderingContextBase, |
54 'WebGLShader': () => Shader, | 55 'WebGLShader': () => Shader, |
55 'WebGLShaderPrecisionFormat': () => ShaderPrecisionFormat, | 56 'WebGLShaderPrecisionFormat': () => ShaderPrecisionFormat, |
56 'WebGLTexture': () => Texture, | 57 'WebGLTexture': () => Texture, |
57 'WebGLUniformLocation': () => UniformLocation, | 58 'WebGLUniformLocation': () => UniformLocation, |
58 'WebGLVertexArrayObjectOES': () => VertexArrayObject, | 59 'WebGLVertexArrayObjectOES': () => VertexArrayObject, |
59 | 60 |
60 }; | 61 }; |
61 | 62 |
62 // FIXME: Can we make this private? | 63 // FIXME: Can we make this private? |
| 64 @Deprecated("Internal Use Only") |
63 final web_glBlinkFunctionMap = { | 65 final web_glBlinkFunctionMap = { |
64 'ANGLEInstancedArrays': () => AngleInstancedArrays.internalCreateAngleInstance
dArrays, | 66 'ANGLEInstancedArrays': () => AngleInstancedArrays.internalCreateAngleInstance
dArrays, |
65 'EXTBlendMinMax': () => ExtBlendMinMax.internalCreateExtBlendMinMax, | 67 'EXTBlendMinMax': () => ExtBlendMinMax.internalCreateExtBlendMinMax, |
66 'EXTFragDepth': () => ExtFragDepth.internalCreateExtFragDepth, | 68 'EXTFragDepth': () => ExtFragDepth.internalCreateExtFragDepth, |
67 'EXTShaderTextureLOD': () => ExtShaderTextureLod.internalCreateExtShaderTextur
eLod, | 69 'EXTShaderTextureLOD': () => ExtShaderTextureLod.internalCreateExtShaderTextur
eLod, |
68 'EXTTextureFilterAnisotropic': () => ExtTextureFilterAnisotropic.internalCreat
eExtTextureFilterAnisotropic, | 70 'EXTTextureFilterAnisotropic': () => ExtTextureFilterAnisotropic.internalCreat
eExtTextureFilterAnisotropic, |
69 'OESElementIndexUint': () => OesElementIndexUint.internalCreateOesElementIndex
Uint, | 71 'OESElementIndexUint': () => OesElementIndexUint.internalCreateOesElementIndex
Uint, |
70 'OESStandardDerivatives': () => OesStandardDerivatives.internalCreateOesStanda
rdDerivatives, | 72 'OESStandardDerivatives': () => OesStandardDerivatives.internalCreateOesStanda
rdDerivatives, |
71 'OESTextureFloat': () => OesTextureFloat.internalCreateOesTextureFloat, | 73 'OESTextureFloat': () => OesTextureFloat.internalCreateOesTextureFloat, |
72 'OESTextureFloatLinear': () => OesTextureFloatLinear.internalCreateOesTextureF
loatLinear, | 74 'OESTextureFloatLinear': () => OesTextureFloatLinear.internalCreateOesTextureF
loatLinear, |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 // WARNING: Do not edit - generated code. | 407 // WARNING: Do not edit - generated code. |
406 | 408 |
407 | 409 |
408 @DocsEditable() | 410 @DocsEditable() |
409 @DomName('WebGLActiveInfo') | 411 @DomName('WebGLActiveInfo') |
410 @Unstable() | 412 @Unstable() |
411 class ActiveInfo extends DartHtmlDomObject { | 413 class ActiveInfo extends DartHtmlDomObject { |
412 // To suppress missing implicit constructor warnings. | 414 // To suppress missing implicit constructor warnings. |
413 factory ActiveInfo._() { throw new UnsupportedError("Not supported"); } | 415 factory ActiveInfo._() { throw new UnsupportedError("Not supported"); } |
414 | 416 |
| 417 @Deprecated("Internal Use Only") |
415 static ActiveInfo internalCreateActiveInfo() { | 418 static ActiveInfo internalCreateActiveInfo() { |
416 return new ActiveInfo._internalWrap(); | 419 return new ActiveInfo._internalWrap(); |
417 } | 420 } |
418 | 421 |
419 factory ActiveInfo._internalWrap() { | 422 factory ActiveInfo._internalWrap() { |
420 return new ActiveInfo.internal_(); | 423 return new ActiveInfo.internal_(); |
421 } | 424 } |
422 | 425 |
423 ActiveInfo.internal_() { } | 426 ActiveInfo.internal_() { } |
424 | 427 |
(...skipping 20 matching lines...) Expand all Loading... |
445 // WARNING: Do not edit - generated code. | 448 // WARNING: Do not edit - generated code. |
446 | 449 |
447 | 450 |
448 @DocsEditable() | 451 @DocsEditable() |
449 @DomName('ANGLEInstancedArrays') | 452 @DomName('ANGLEInstancedArrays') |
450 @Experimental() // untriaged | 453 @Experimental() // untriaged |
451 class AngleInstancedArrays extends DartHtmlDomObject { | 454 class AngleInstancedArrays extends DartHtmlDomObject { |
452 // To suppress missing implicit constructor warnings. | 455 // To suppress missing implicit constructor warnings. |
453 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported")
; } | 456 factory AngleInstancedArrays._() { throw new UnsupportedError("Not supported")
; } |
454 | 457 |
| 458 @Deprecated("Internal Use Only") |
455 static AngleInstancedArrays internalCreateAngleInstancedArrays() { | 459 static AngleInstancedArrays internalCreateAngleInstancedArrays() { |
456 return new AngleInstancedArrays._internalWrap(); | 460 return new AngleInstancedArrays._internalWrap(); |
457 } | 461 } |
458 | 462 |
459 factory AngleInstancedArrays._internalWrap() { | 463 factory AngleInstancedArrays._internalWrap() { |
460 return new AngleInstancedArrays.internal_(); | 464 return new AngleInstancedArrays.internal_(); |
461 } | 465 } |
462 | 466 |
463 AngleInstancedArrays.internal_() { } | 467 AngleInstancedArrays.internal_() { } |
464 | 468 |
(...skipping 28 matching lines...) Expand all Loading... |
493 // WARNING: Do not edit - generated code. | 497 // WARNING: Do not edit - generated code. |
494 | 498 |
495 | 499 |
496 @DocsEditable() | 500 @DocsEditable() |
497 @DomName('WebGLBuffer') | 501 @DomName('WebGLBuffer') |
498 @Unstable() | 502 @Unstable() |
499 class Buffer extends DartHtmlDomObject { | 503 class Buffer extends DartHtmlDomObject { |
500 // To suppress missing implicit constructor warnings. | 504 // To suppress missing implicit constructor warnings. |
501 factory Buffer._() { throw new UnsupportedError("Not supported"); } | 505 factory Buffer._() { throw new UnsupportedError("Not supported"); } |
502 | 506 |
| 507 @Deprecated("Internal Use Only") |
503 static Buffer internalCreateBuffer() { | 508 static Buffer internalCreateBuffer() { |
504 return new Buffer._internalWrap(); | 509 return new Buffer._internalWrap(); |
505 } | 510 } |
506 | 511 |
507 factory Buffer._internalWrap() { | 512 factory Buffer._internalWrap() { |
508 return new Buffer.internal_(); | 513 return new Buffer.internal_(); |
509 } | 514 } |
510 | 515 |
511 Buffer.internal_() { } | 516 Buffer.internal_() { } |
512 | 517 |
513 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 518 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
514 int get hashCode => unwrap_jso(this).hashCode; | 519 int get hashCode => unwrap_jso(this).hashCode; |
515 | 520 |
516 } | 521 } |
517 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 522 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
518 // for details. All rights reserved. Use of this source code is governed by a | 523 // for details. All rights reserved. Use of this source code is governed by a |
519 // BSD-style license that can be found in the LICENSE file. | 524 // BSD-style license that can be found in the LICENSE file. |
520 | 525 |
521 // WARNING: Do not edit - generated code. | 526 // WARNING: Do not edit - generated code. |
522 | 527 |
523 | 528 |
524 @DocsEditable() | 529 @DocsEditable() |
525 @DomName('WebGLCompressedTextureATC') | 530 @DomName('WebGLCompressedTextureATC') |
526 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc
/ | 531 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc
/ |
527 @Experimental() | 532 @Experimental() |
528 class CompressedTextureAtc extends DartHtmlDomObject { | 533 class CompressedTextureAtc extends DartHtmlDomObject { |
529 // To suppress missing implicit constructor warnings. | 534 // To suppress missing implicit constructor warnings. |
530 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported")
; } | 535 factory CompressedTextureAtc._() { throw new UnsupportedError("Not supported")
; } |
531 | 536 |
| 537 @Deprecated("Internal Use Only") |
532 static CompressedTextureAtc internalCreateCompressedTextureAtc() { | 538 static CompressedTextureAtc internalCreateCompressedTextureAtc() { |
533 return new CompressedTextureAtc._internalWrap(); | 539 return new CompressedTextureAtc._internalWrap(); |
534 } | 540 } |
535 | 541 |
536 factory CompressedTextureAtc._internalWrap() { | 542 factory CompressedTextureAtc._internalWrap() { |
537 return new CompressedTextureAtc.internal_(); | 543 return new CompressedTextureAtc.internal_(); |
538 } | 544 } |
539 | 545 |
540 CompressedTextureAtc.internal_() { } | 546 CompressedTextureAtc.internal_() { } |
541 | 547 |
(...skipping 20 matching lines...) Expand all Loading... |
562 // WARNING: Do not edit - generated code. | 568 // WARNING: Do not edit - generated code. |
563 | 569 |
564 | 570 |
565 @DocsEditable() | 571 @DocsEditable() |
566 @DomName('WebGLCompressedTextureETC1') | 572 @DomName('WebGLCompressedTextureETC1') |
567 @Experimental() // untriaged | 573 @Experimental() // untriaged |
568 class CompressedTextureETC1 extends DartHtmlDomObject { | 574 class CompressedTextureETC1 extends DartHtmlDomObject { |
569 // To suppress missing implicit constructor warnings. | 575 // To suppress missing implicit constructor warnings. |
570 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported"
); } | 576 factory CompressedTextureETC1._() { throw new UnsupportedError("Not supported"
); } |
571 | 577 |
| 578 @Deprecated("Internal Use Only") |
572 static CompressedTextureETC1 internalCreateCompressedTextureETC1() { | 579 static CompressedTextureETC1 internalCreateCompressedTextureETC1() { |
573 return new CompressedTextureETC1._internalWrap(); | 580 return new CompressedTextureETC1._internalWrap(); |
574 } | 581 } |
575 | 582 |
576 factory CompressedTextureETC1._internalWrap() { | 583 factory CompressedTextureETC1._internalWrap() { |
577 return new CompressedTextureETC1.internal_(); | 584 return new CompressedTextureETC1.internal_(); |
578 } | 585 } |
579 | 586 |
580 CompressedTextureETC1.internal_() { } | 587 CompressedTextureETC1.internal_() { } |
581 | 588 |
(...skipping 14 matching lines...) Expand all Loading... |
596 | 603 |
597 | 604 |
598 @DocsEditable() | 605 @DocsEditable() |
599 @DomName('WebGLCompressedTexturePVRTC') | 606 @DomName('WebGLCompressedTexturePVRTC') |
600 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvr
tc/ | 607 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_pvr
tc/ |
601 @Experimental() // experimental | 608 @Experimental() // experimental |
602 class CompressedTexturePvrtc extends DartHtmlDomObject { | 609 class CompressedTexturePvrtc extends DartHtmlDomObject { |
603 // To suppress missing implicit constructor warnings. | 610 // To suppress missing implicit constructor warnings. |
604 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported
"); } | 611 factory CompressedTexturePvrtc._() { throw new UnsupportedError("Not supported
"); } |
605 | 612 |
| 613 @Deprecated("Internal Use Only") |
606 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() { | 614 static CompressedTexturePvrtc internalCreateCompressedTexturePvrtc() { |
607 return new CompressedTexturePvrtc._internalWrap(); | 615 return new CompressedTexturePvrtc._internalWrap(); |
608 } | 616 } |
609 | 617 |
610 factory CompressedTexturePvrtc._internalWrap() { | 618 factory CompressedTexturePvrtc._internalWrap() { |
611 return new CompressedTexturePvrtc.internal_(); | 619 return new CompressedTexturePvrtc.internal_(); |
612 } | 620 } |
613 | 621 |
614 CompressedTexturePvrtc.internal_() { } | 622 CompressedTexturePvrtc.internal_() { } |
615 | 623 |
(...skipping 25 matching lines...) Expand all Loading... |
641 | 649 |
642 | 650 |
643 @DocsEditable() | 651 @DocsEditable() |
644 @DomName('WebGLCompressedTextureS3TC') | 652 @DomName('WebGLCompressedTextureS3TC') |
645 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3t
c/ | 653 // http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_s3t
c/ |
646 @Experimental() // experimental | 654 @Experimental() // experimental |
647 class CompressedTextureS3TC extends DartHtmlDomObject { | 655 class CompressedTextureS3TC extends DartHtmlDomObject { |
648 // To suppress missing implicit constructor warnings. | 656 // To suppress missing implicit constructor warnings. |
649 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported"
); } | 657 factory CompressedTextureS3TC._() { throw new UnsupportedError("Not supported"
); } |
650 | 658 |
| 659 @Deprecated("Internal Use Only") |
651 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() { | 660 static CompressedTextureS3TC internalCreateCompressedTextureS3TC() { |
652 return new CompressedTextureS3TC._internalWrap(); | 661 return new CompressedTextureS3TC._internalWrap(); |
653 } | 662 } |
654 | 663 |
655 factory CompressedTextureS3TC._internalWrap() { | 664 factory CompressedTextureS3TC._internalWrap() { |
656 return new CompressedTextureS3TC.internal_(); | 665 return new CompressedTextureS3TC.internal_(); |
657 } | 666 } |
658 | 667 |
659 CompressedTextureS3TC.internal_() { } | 668 CompressedTextureS3TC.internal_() { } |
660 | 669 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 * | 716 * |
708 * If [stencil] is `true`, then the context has a stencil buffer of at least 8 | 717 * If [stencil] is `true`, then the context has a stencil buffer of at least 8 |
709 * bits. | 718 * bits. |
710 */ | 719 */ |
711 @DomName('WebGLContextAttributes') | 720 @DomName('WebGLContextAttributes') |
712 @Unstable() | 721 @Unstable() |
713 class ContextAttributes extends DartHtmlDomObject { | 722 class ContextAttributes extends DartHtmlDomObject { |
714 // To suppress missing implicit constructor warnings. | 723 // To suppress missing implicit constructor warnings. |
715 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); } | 724 factory ContextAttributes._() { throw new UnsupportedError("Not supported"); } |
716 | 725 |
| 726 @Deprecated("Internal Use Only") |
717 static ContextAttributes internalCreateContextAttributes() { | 727 static ContextAttributes internalCreateContextAttributes() { |
718 return new ContextAttributes._internalWrap(); | 728 return new ContextAttributes._internalWrap(); |
719 } | 729 } |
720 | 730 |
721 factory ContextAttributes._internalWrap() { | 731 factory ContextAttributes._internalWrap() { |
722 return new ContextAttributes.internal_(); | 732 return new ContextAttributes.internal_(); |
723 } | 733 } |
724 | 734 |
725 ContextAttributes.internal_() { } | 735 ContextAttributes.internal_() { } |
726 | 736 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 | 804 |
795 | 805 |
796 @DocsEditable() | 806 @DocsEditable() |
797 @DomName('WebGLContextEvent') | 807 @DomName('WebGLContextEvent') |
798 @Unstable() | 808 @Unstable() |
799 class ContextEvent extends Event { | 809 class ContextEvent extends Event { |
800 // To suppress missing implicit constructor warnings. | 810 // To suppress missing implicit constructor warnings. |
801 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } | 811 factory ContextEvent._() { throw new UnsupportedError("Not supported"); } |
802 | 812 |
803 | 813 |
| 814 @Deprecated("Internal Use Only") |
804 static ContextEvent internalCreateContextEvent() { | 815 static ContextEvent internalCreateContextEvent() { |
805 return new ContextEvent._internalWrap(); | 816 return new ContextEvent._internalWrap(); |
806 } | 817 } |
807 | 818 |
808 factory ContextEvent._internalWrap() { | 819 factory ContextEvent._internalWrap() { |
809 return new ContextEvent.internal_(); | 820 return new ContextEvent.internal_(); |
810 } | 821 } |
811 | 822 |
812 ContextEvent.internal_() : super.internal_(); | 823 ContextEvent.internal_() : super.internal_(); |
813 | 824 |
(...skipping 11 matching lines...) Expand all Loading... |
825 | 836 |
826 | 837 |
827 @DocsEditable() | 838 @DocsEditable() |
828 @DomName('WebGLDebugRendererInfo') | 839 @DomName('WebGLDebugRendererInfo') |
829 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/ | 840 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_renderer_info/ |
830 @Experimental() // experimental | 841 @Experimental() // experimental |
831 class DebugRendererInfo extends DartHtmlDomObject { | 842 class DebugRendererInfo extends DartHtmlDomObject { |
832 // To suppress missing implicit constructor warnings. | 843 // To suppress missing implicit constructor warnings. |
833 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); } | 844 factory DebugRendererInfo._() { throw new UnsupportedError("Not supported"); } |
834 | 845 |
| 846 @Deprecated("Internal Use Only") |
835 static DebugRendererInfo internalCreateDebugRendererInfo() { | 847 static DebugRendererInfo internalCreateDebugRendererInfo() { |
836 return new DebugRendererInfo._internalWrap(); | 848 return new DebugRendererInfo._internalWrap(); |
837 } | 849 } |
838 | 850 |
839 factory DebugRendererInfo._internalWrap() { | 851 factory DebugRendererInfo._internalWrap() { |
840 return new DebugRendererInfo.internal_(); | 852 return new DebugRendererInfo.internal_(); |
841 } | 853 } |
842 | 854 |
843 DebugRendererInfo.internal_() { } | 855 DebugRendererInfo.internal_() { } |
844 | 856 |
(...skipping 17 matching lines...) Expand all Loading... |
862 | 874 |
863 | 875 |
864 @DocsEditable() | 876 @DocsEditable() |
865 @DomName('WebGLDebugShaders') | 877 @DomName('WebGLDebugShaders') |
866 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_shaders/ | 878 // http://www.khronos.org/registry/webgl/extensions/WEBGL_debug_shaders/ |
867 @Experimental() // experimental | 879 @Experimental() // experimental |
868 class DebugShaders extends DartHtmlDomObject { | 880 class DebugShaders extends DartHtmlDomObject { |
869 // To suppress missing implicit constructor warnings. | 881 // To suppress missing implicit constructor warnings. |
870 factory DebugShaders._() { throw new UnsupportedError("Not supported"); } | 882 factory DebugShaders._() { throw new UnsupportedError("Not supported"); } |
871 | 883 |
| 884 @Deprecated("Internal Use Only") |
872 static DebugShaders internalCreateDebugShaders() { | 885 static DebugShaders internalCreateDebugShaders() { |
873 return new DebugShaders._internalWrap(); | 886 return new DebugShaders._internalWrap(); |
874 } | 887 } |
875 | 888 |
876 factory DebugShaders._internalWrap() { | 889 factory DebugShaders._internalWrap() { |
877 return new DebugShaders.internal_(); | 890 return new DebugShaders.internal_(); |
878 } | 891 } |
879 | 892 |
880 DebugShaders.internal_() { } | 893 DebugShaders.internal_() { } |
881 | 894 |
(...skipping 13 matching lines...) Expand all Loading... |
895 | 908 |
896 | 909 |
897 @DocsEditable() | 910 @DocsEditable() |
898 @DomName('WebGLDepthTexture') | 911 @DomName('WebGLDepthTexture') |
899 // http://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/ | 912 // http://www.khronos.org/registry/webgl/extensions/WEBGL_depth_texture/ |
900 @Experimental() // experimental | 913 @Experimental() // experimental |
901 class DepthTexture extends DartHtmlDomObject { | 914 class DepthTexture extends DartHtmlDomObject { |
902 // To suppress missing implicit constructor warnings. | 915 // To suppress missing implicit constructor warnings. |
903 factory DepthTexture._() { throw new UnsupportedError("Not supported"); } | 916 factory DepthTexture._() { throw new UnsupportedError("Not supported"); } |
904 | 917 |
| 918 @Deprecated("Internal Use Only") |
905 static DepthTexture internalCreateDepthTexture() { | 919 static DepthTexture internalCreateDepthTexture() { |
906 return new DepthTexture._internalWrap(); | 920 return new DepthTexture._internalWrap(); |
907 } | 921 } |
908 | 922 |
909 factory DepthTexture._internalWrap() { | 923 factory DepthTexture._internalWrap() { |
910 return new DepthTexture.internal_(); | 924 return new DepthTexture.internal_(); |
911 } | 925 } |
912 | 926 |
913 DepthTexture.internal_() { } | 927 DepthTexture.internal_() { } |
914 | 928 |
(...skipping 13 matching lines...) Expand all Loading... |
928 | 942 |
929 | 943 |
930 @DocsEditable() | 944 @DocsEditable() |
931 @DomName('WebGLDrawBuffers') | 945 @DomName('WebGLDrawBuffers') |
932 // http://www.khronos.org/registry/webgl/specs/latest/ | 946 // http://www.khronos.org/registry/webgl/specs/latest/ |
933 @Experimental() // stable | 947 @Experimental() // stable |
934 class DrawBuffers extends DartHtmlDomObject { | 948 class DrawBuffers extends DartHtmlDomObject { |
935 // To suppress missing implicit constructor warnings. | 949 // To suppress missing implicit constructor warnings. |
936 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); } | 950 factory DrawBuffers._() { throw new UnsupportedError("Not supported"); } |
937 | 951 |
| 952 @Deprecated("Internal Use Only") |
938 static DrawBuffers internalCreateDrawBuffers() { | 953 static DrawBuffers internalCreateDrawBuffers() { |
939 return new DrawBuffers._internalWrap(); | 954 return new DrawBuffers._internalWrap(); |
940 } | 955 } |
941 | 956 |
942 factory DrawBuffers._internalWrap() { | 957 factory DrawBuffers._internalWrap() { |
943 return new DrawBuffers.internal_(); | 958 return new DrawBuffers.internal_(); |
944 } | 959 } |
945 | 960 |
946 DrawBuffers.internal_() { } | 961 DrawBuffers.internal_() { } |
947 | 962 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1096 // WARNING: Do not edit - generated code. | 1111 // WARNING: Do not edit - generated code. |
1097 | 1112 |
1098 | 1113 |
1099 @DocsEditable() | 1114 @DocsEditable() |
1100 @DomName('EXTBlendMinMax') | 1115 @DomName('EXTBlendMinMax') |
1101 @Experimental() // untriaged | 1116 @Experimental() // untriaged |
1102 class ExtBlendMinMax extends DartHtmlDomObject { | 1117 class ExtBlendMinMax extends DartHtmlDomObject { |
1103 // To suppress missing implicit constructor warnings. | 1118 // To suppress missing implicit constructor warnings. |
1104 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } | 1119 factory ExtBlendMinMax._() { throw new UnsupportedError("Not supported"); } |
1105 | 1120 |
| 1121 @Deprecated("Internal Use Only") |
1106 static ExtBlendMinMax internalCreateExtBlendMinMax() { | 1122 static ExtBlendMinMax internalCreateExtBlendMinMax() { |
1107 return new ExtBlendMinMax._internalWrap(); | 1123 return new ExtBlendMinMax._internalWrap(); |
1108 } | 1124 } |
1109 | 1125 |
1110 factory ExtBlendMinMax._internalWrap() { | 1126 factory ExtBlendMinMax._internalWrap() { |
1111 return new ExtBlendMinMax.internal_(); | 1127 return new ExtBlendMinMax.internal_(); |
1112 } | 1128 } |
1113 | 1129 |
1114 ExtBlendMinMax.internal_() { } | 1130 ExtBlendMinMax.internal_() { } |
1115 | 1131 |
(...skipping 19 matching lines...) Expand all Loading... |
1135 | 1151 |
1136 | 1152 |
1137 @DocsEditable() | 1153 @DocsEditable() |
1138 @DomName('EXTFragDepth') | 1154 @DomName('EXTFragDepth') |
1139 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ | 1155 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ |
1140 @Experimental() | 1156 @Experimental() |
1141 class ExtFragDepth extends DartHtmlDomObject { | 1157 class ExtFragDepth extends DartHtmlDomObject { |
1142 // To suppress missing implicit constructor warnings. | 1158 // To suppress missing implicit constructor warnings. |
1143 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); } | 1159 factory ExtFragDepth._() { throw new UnsupportedError("Not supported"); } |
1144 | 1160 |
| 1161 @Deprecated("Internal Use Only") |
1145 static ExtFragDepth internalCreateExtFragDepth() { | 1162 static ExtFragDepth internalCreateExtFragDepth() { |
1146 return new ExtFragDepth._internalWrap(); | 1163 return new ExtFragDepth._internalWrap(); |
1147 } | 1164 } |
1148 | 1165 |
1149 factory ExtFragDepth._internalWrap() { | 1166 factory ExtFragDepth._internalWrap() { |
1150 return new ExtFragDepth.internal_(); | 1167 return new ExtFragDepth.internal_(); |
1151 } | 1168 } |
1152 | 1169 |
1153 ExtFragDepth.internal_() { } | 1170 ExtFragDepth.internal_() { } |
1154 | 1171 |
1155 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1172 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1156 int get hashCode => unwrap_jso(this).hashCode; | 1173 int get hashCode => unwrap_jso(this).hashCode; |
1157 | 1174 |
1158 } | 1175 } |
1159 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1176 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1160 // for details. All rights reserved. Use of this source code is governed by a | 1177 // for details. All rights reserved. Use of this source code is governed by a |
1161 // BSD-style license that can be found in the LICENSE file. | 1178 // BSD-style license that can be found in the LICENSE file. |
1162 | 1179 |
1163 // WARNING: Do not edit - generated code. | 1180 // WARNING: Do not edit - generated code. |
1164 | 1181 |
1165 | 1182 |
1166 @DocsEditable() | 1183 @DocsEditable() |
1167 @DomName('EXTShaderTextureLOD') | 1184 @DomName('EXTShaderTextureLOD') |
1168 @Experimental() // untriaged | 1185 @Experimental() // untriaged |
1169 class ExtShaderTextureLod extends DartHtmlDomObject { | 1186 class ExtShaderTextureLod extends DartHtmlDomObject { |
1170 // To suppress missing implicit constructor warnings. | 1187 // To suppress missing implicit constructor warnings. |
1171 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported");
} | 1188 factory ExtShaderTextureLod._() { throw new UnsupportedError("Not supported");
} |
1172 | 1189 |
| 1190 @Deprecated("Internal Use Only") |
1173 static ExtShaderTextureLod internalCreateExtShaderTextureLod() { | 1191 static ExtShaderTextureLod internalCreateExtShaderTextureLod() { |
1174 return new ExtShaderTextureLod._internalWrap(); | 1192 return new ExtShaderTextureLod._internalWrap(); |
1175 } | 1193 } |
1176 | 1194 |
1177 factory ExtShaderTextureLod._internalWrap() { | 1195 factory ExtShaderTextureLod._internalWrap() { |
1178 return new ExtShaderTextureLod.internal_(); | 1196 return new ExtShaderTextureLod.internal_(); |
1179 } | 1197 } |
1180 | 1198 |
1181 ExtShaderTextureLod.internal_() { } | 1199 ExtShaderTextureLod.internal_() { } |
1182 | 1200 |
1183 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1201 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1184 int get hashCode => unwrap_jso(this).hashCode; | 1202 int get hashCode => unwrap_jso(this).hashCode; |
1185 | 1203 |
1186 } | 1204 } |
1187 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1205 // 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 | 1206 // 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. | 1207 // BSD-style license that can be found in the LICENSE file. |
1190 | 1208 |
1191 // WARNING: Do not edit - generated code. | 1209 // WARNING: Do not edit - generated code. |
1192 | 1210 |
1193 | 1211 |
1194 @DocsEditable() | 1212 @DocsEditable() |
1195 @DomName('EXTTextureFilterAnisotropic') | 1213 @DomName('EXTTextureFilterAnisotropic') |
1196 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop
ic/ | 1214 // http://www.khronos.org/registry/webgl/extensions/EXT_texture_filter_anisotrop
ic/ |
1197 @Experimental() | 1215 @Experimental() |
1198 class ExtTextureFilterAnisotropic extends DartHtmlDomObject { | 1216 class ExtTextureFilterAnisotropic extends DartHtmlDomObject { |
1199 // To suppress missing implicit constructor warnings. | 1217 // To suppress missing implicit constructor warnings. |
1200 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp
orted"); } | 1218 factory ExtTextureFilterAnisotropic._() { throw new UnsupportedError("Not supp
orted"); } |
1201 | 1219 |
| 1220 @Deprecated("Internal Use Only") |
1202 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic()
{ | 1221 static ExtTextureFilterAnisotropic internalCreateExtTextureFilterAnisotropic()
{ |
1203 return new ExtTextureFilterAnisotropic._internalWrap(); | 1222 return new ExtTextureFilterAnisotropic._internalWrap(); |
1204 } | 1223 } |
1205 | 1224 |
1206 factory ExtTextureFilterAnisotropic._internalWrap() { | 1225 factory ExtTextureFilterAnisotropic._internalWrap() { |
1207 return new ExtTextureFilterAnisotropic.internal_(); | 1226 return new ExtTextureFilterAnisotropic.internal_(); |
1208 } | 1227 } |
1209 | 1228 |
1210 ExtTextureFilterAnisotropic.internal_() { } | 1229 ExtTextureFilterAnisotropic.internal_() { } |
1211 | 1230 |
(...skipping 16 matching lines...) Expand all Loading... |
1228 // WARNING: Do not edit - generated code. | 1247 // WARNING: Do not edit - generated code. |
1229 | 1248 |
1230 | 1249 |
1231 @DocsEditable() | 1250 @DocsEditable() |
1232 @DomName('WebGLFramebuffer') | 1251 @DomName('WebGLFramebuffer') |
1233 @Unstable() | 1252 @Unstable() |
1234 class Framebuffer extends DartHtmlDomObject { | 1253 class Framebuffer extends DartHtmlDomObject { |
1235 // To suppress missing implicit constructor warnings. | 1254 // To suppress missing implicit constructor warnings. |
1236 factory Framebuffer._() { throw new UnsupportedError("Not supported"); } | 1255 factory Framebuffer._() { throw new UnsupportedError("Not supported"); } |
1237 | 1256 |
| 1257 @Deprecated("Internal Use Only") |
1238 static Framebuffer internalCreateFramebuffer() { | 1258 static Framebuffer internalCreateFramebuffer() { |
1239 return new Framebuffer._internalWrap(); | 1259 return new Framebuffer._internalWrap(); |
1240 } | 1260 } |
1241 | 1261 |
1242 factory Framebuffer._internalWrap() { | 1262 factory Framebuffer._internalWrap() { |
1243 return new Framebuffer.internal_(); | 1263 return new Framebuffer.internal_(); |
1244 } | 1264 } |
1245 | 1265 |
1246 Framebuffer.internal_() { } | 1266 Framebuffer.internal_() { } |
1247 | 1267 |
1248 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1268 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1249 int get hashCode => unwrap_jso(this).hashCode; | 1269 int get hashCode => unwrap_jso(this).hashCode; |
1250 | 1270 |
1251 } | 1271 } |
1252 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1272 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1253 // for details. All rights reserved. Use of this source code is governed by a | 1273 // for details. All rights reserved. Use of this source code is governed by a |
1254 // BSD-style license that can be found in the LICENSE file. | 1274 // BSD-style license that can be found in the LICENSE file. |
1255 | 1275 |
1256 // WARNING: Do not edit - generated code. | 1276 // WARNING: Do not edit - generated code. |
1257 | 1277 |
1258 | 1278 |
1259 @DocsEditable() | 1279 @DocsEditable() |
1260 @DomName('WebGLLoseContext') | 1280 @DomName('WebGLLoseContext') |
1261 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/ | 1281 // http://www.khronos.org/registry/webgl/extensions/WEBGL_lose_context/ |
1262 @Experimental() | 1282 @Experimental() |
1263 class LoseContext extends DartHtmlDomObject { | 1283 class LoseContext extends DartHtmlDomObject { |
1264 // To suppress missing implicit constructor warnings. | 1284 // To suppress missing implicit constructor warnings. |
1265 factory LoseContext._() { throw new UnsupportedError("Not supported"); } | 1285 factory LoseContext._() { throw new UnsupportedError("Not supported"); } |
1266 | 1286 |
| 1287 @Deprecated("Internal Use Only") |
1267 static LoseContext internalCreateLoseContext() { | 1288 static LoseContext internalCreateLoseContext() { |
1268 return new LoseContext._internalWrap(); | 1289 return new LoseContext._internalWrap(); |
1269 } | 1290 } |
1270 | 1291 |
1271 factory LoseContext._internalWrap() { | 1292 factory LoseContext._internalWrap() { |
1272 return new LoseContext.internal_(); | 1293 return new LoseContext.internal_(); |
1273 } | 1294 } |
1274 | 1295 |
1275 LoseContext.internal_() { } | 1296 LoseContext.internal_() { } |
1276 | 1297 |
(...skipping 17 matching lines...) Expand all Loading... |
1294 | 1315 |
1295 | 1316 |
1296 @DocsEditable() | 1317 @DocsEditable() |
1297 @DomName('OESElementIndexUint') | 1318 @DomName('OESElementIndexUint') |
1298 // http://www.khronos.org/registry/webgl/extensions/OES_element_index_uint/ | 1319 // http://www.khronos.org/registry/webgl/extensions/OES_element_index_uint/ |
1299 @Experimental() // experimental | 1320 @Experimental() // experimental |
1300 class OesElementIndexUint extends DartHtmlDomObject { | 1321 class OesElementIndexUint extends DartHtmlDomObject { |
1301 // To suppress missing implicit constructor warnings. | 1322 // To suppress missing implicit constructor warnings. |
1302 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported");
} | 1323 factory OesElementIndexUint._() { throw new UnsupportedError("Not supported");
} |
1303 | 1324 |
| 1325 @Deprecated("Internal Use Only") |
1304 static OesElementIndexUint internalCreateOesElementIndexUint() { | 1326 static OesElementIndexUint internalCreateOesElementIndexUint() { |
1305 return new OesElementIndexUint._internalWrap(); | 1327 return new OesElementIndexUint._internalWrap(); |
1306 } | 1328 } |
1307 | 1329 |
1308 factory OesElementIndexUint._internalWrap() { | 1330 factory OesElementIndexUint._internalWrap() { |
1309 return new OesElementIndexUint.internal_(); | 1331 return new OesElementIndexUint.internal_(); |
1310 } | 1332 } |
1311 | 1333 |
1312 OesElementIndexUint.internal_() { } | 1334 OesElementIndexUint.internal_() { } |
1313 | 1335 |
1314 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1336 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1315 int get hashCode => unwrap_jso(this).hashCode; | 1337 int get hashCode => unwrap_jso(this).hashCode; |
1316 | 1338 |
1317 } | 1339 } |
1318 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1340 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1319 // for details. All rights reserved. Use of this source code is governed by a | 1341 // for details. All rights reserved. Use of this source code is governed by a |
1320 // BSD-style license that can be found in the LICENSE file. | 1342 // BSD-style license that can be found in the LICENSE file. |
1321 | 1343 |
1322 // WARNING: Do not edit - generated code. | 1344 // WARNING: Do not edit - generated code. |
1323 | 1345 |
1324 | 1346 |
1325 @DocsEditable() | 1347 @DocsEditable() |
1326 @DomName('OESStandardDerivatives') | 1348 @DomName('OESStandardDerivatives') |
1327 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/ | 1349 // http://www.khronos.org/registry/webgl/extensions/OES_standard_derivatives/ |
1328 @Experimental() // experimental | 1350 @Experimental() // experimental |
1329 class OesStandardDerivatives extends DartHtmlDomObject { | 1351 class OesStandardDerivatives extends DartHtmlDomObject { |
1330 // To suppress missing implicit constructor warnings. | 1352 // To suppress missing implicit constructor warnings. |
1331 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported
"); } | 1353 factory OesStandardDerivatives._() { throw new UnsupportedError("Not supported
"); } |
1332 | 1354 |
| 1355 @Deprecated("Internal Use Only") |
1333 static OesStandardDerivatives internalCreateOesStandardDerivatives() { | 1356 static OesStandardDerivatives internalCreateOesStandardDerivatives() { |
1334 return new OesStandardDerivatives._internalWrap(); | 1357 return new OesStandardDerivatives._internalWrap(); |
1335 } | 1358 } |
1336 | 1359 |
1337 factory OesStandardDerivatives._internalWrap() { | 1360 factory OesStandardDerivatives._internalWrap() { |
1338 return new OesStandardDerivatives.internal_(); | 1361 return new OesStandardDerivatives.internal_(); |
1339 } | 1362 } |
1340 | 1363 |
1341 OesStandardDerivatives.internal_() { } | 1364 OesStandardDerivatives.internal_() { } |
1342 | 1365 |
(...skipping 13 matching lines...) Expand all Loading... |
1356 | 1379 |
1357 | 1380 |
1358 @DocsEditable() | 1381 @DocsEditable() |
1359 @DomName('OESTextureFloat') | 1382 @DomName('OESTextureFloat') |
1360 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float/ | 1383 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float/ |
1361 @Experimental() // experimental | 1384 @Experimental() // experimental |
1362 class OesTextureFloat extends DartHtmlDomObject { | 1385 class OesTextureFloat extends DartHtmlDomObject { |
1363 // To suppress missing implicit constructor warnings. | 1386 // To suppress missing implicit constructor warnings. |
1364 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); } | 1387 factory OesTextureFloat._() { throw new UnsupportedError("Not supported"); } |
1365 | 1388 |
| 1389 @Deprecated("Internal Use Only") |
1366 static OesTextureFloat internalCreateOesTextureFloat() { | 1390 static OesTextureFloat internalCreateOesTextureFloat() { |
1367 return new OesTextureFloat._internalWrap(); | 1391 return new OesTextureFloat._internalWrap(); |
1368 } | 1392 } |
1369 | 1393 |
1370 factory OesTextureFloat._internalWrap() { | 1394 factory OesTextureFloat._internalWrap() { |
1371 return new OesTextureFloat.internal_(); | 1395 return new OesTextureFloat.internal_(); |
1372 } | 1396 } |
1373 | 1397 |
1374 OesTextureFloat.internal_() { } | 1398 OesTextureFloat.internal_() { } |
1375 | 1399 |
1376 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1400 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1377 int get hashCode => unwrap_jso(this).hashCode; | 1401 int get hashCode => unwrap_jso(this).hashCode; |
1378 | 1402 |
1379 } | 1403 } |
1380 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1404 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1381 // for details. All rights reserved. Use of this source code is governed by a | 1405 // for details. All rights reserved. Use of this source code is governed by a |
1382 // BSD-style license that can be found in the LICENSE file. | 1406 // BSD-style license that can be found in the LICENSE file. |
1383 | 1407 |
1384 // WARNING: Do not edit - generated code. | 1408 // WARNING: Do not edit - generated code. |
1385 | 1409 |
1386 | 1410 |
1387 @DocsEditable() | 1411 @DocsEditable() |
1388 @DomName('OESTextureFloatLinear') | 1412 @DomName('OESTextureFloatLinear') |
1389 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/ | 1413 // http://www.khronos.org/registry/webgl/extensions/OES_texture_float_linear/ |
1390 @Experimental() | 1414 @Experimental() |
1391 class OesTextureFloatLinear extends DartHtmlDomObject { | 1415 class OesTextureFloatLinear extends DartHtmlDomObject { |
1392 // To suppress missing implicit constructor warnings. | 1416 // To suppress missing implicit constructor warnings. |
1393 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported"
); } | 1417 factory OesTextureFloatLinear._() { throw new UnsupportedError("Not supported"
); } |
1394 | 1418 |
| 1419 @Deprecated("Internal Use Only") |
1395 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() { | 1420 static OesTextureFloatLinear internalCreateOesTextureFloatLinear() { |
1396 return new OesTextureFloatLinear._internalWrap(); | 1421 return new OesTextureFloatLinear._internalWrap(); |
1397 } | 1422 } |
1398 | 1423 |
1399 factory OesTextureFloatLinear._internalWrap() { | 1424 factory OesTextureFloatLinear._internalWrap() { |
1400 return new OesTextureFloatLinear.internal_(); | 1425 return new OesTextureFloatLinear.internal_(); |
1401 } | 1426 } |
1402 | 1427 |
1403 OesTextureFloatLinear.internal_() { } | 1428 OesTextureFloatLinear.internal_() { } |
1404 | 1429 |
1405 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1430 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1406 int get hashCode => unwrap_jso(this).hashCode; | 1431 int get hashCode => unwrap_jso(this).hashCode; |
1407 | 1432 |
1408 } | 1433 } |
1409 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1434 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1410 // for details. All rights reserved. Use of this source code is governed by a | 1435 // for details. All rights reserved. Use of this source code is governed by a |
1411 // BSD-style license that can be found in the LICENSE file. | 1436 // BSD-style license that can be found in the LICENSE file. |
1412 | 1437 |
1413 // WARNING: Do not edit - generated code. | 1438 // WARNING: Do not edit - generated code. |
1414 | 1439 |
1415 | 1440 |
1416 @DocsEditable() | 1441 @DocsEditable() |
1417 @DomName('OESTextureHalfFloat') | 1442 @DomName('OESTextureHalfFloat') |
1418 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/ | 1443 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float/ |
1419 @Experimental() // experimental | 1444 @Experimental() // experimental |
1420 class OesTextureHalfFloat extends DartHtmlDomObject { | 1445 class OesTextureHalfFloat extends DartHtmlDomObject { |
1421 // To suppress missing implicit constructor warnings. | 1446 // To suppress missing implicit constructor warnings. |
1422 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported");
} | 1447 factory OesTextureHalfFloat._() { throw new UnsupportedError("Not supported");
} |
1423 | 1448 |
| 1449 @Deprecated("Internal Use Only") |
1424 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() { | 1450 static OesTextureHalfFloat internalCreateOesTextureHalfFloat() { |
1425 return new OesTextureHalfFloat._internalWrap(); | 1451 return new OesTextureHalfFloat._internalWrap(); |
1426 } | 1452 } |
1427 | 1453 |
1428 factory OesTextureHalfFloat._internalWrap() { | 1454 factory OesTextureHalfFloat._internalWrap() { |
1429 return new OesTextureHalfFloat.internal_(); | 1455 return new OesTextureHalfFloat.internal_(); |
1430 } | 1456 } |
1431 | 1457 |
1432 OesTextureHalfFloat.internal_() { } | 1458 OesTextureHalfFloat.internal_() { } |
1433 | 1459 |
(...skipping 13 matching lines...) Expand all Loading... |
1447 | 1473 |
1448 | 1474 |
1449 @DocsEditable() | 1475 @DocsEditable() |
1450 @DomName('OESTextureHalfFloatLinear') | 1476 @DomName('OESTextureHalfFloatLinear') |
1451 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float_linea
r/ | 1477 // http://www.khronos.org/registry/webgl/extensions/OES_texture_half_float_linea
r/ |
1452 @Experimental() | 1478 @Experimental() |
1453 class OesTextureHalfFloatLinear extends DartHtmlDomObject { | 1479 class OesTextureHalfFloatLinear extends DartHtmlDomObject { |
1454 // To suppress missing implicit constructor warnings. | 1480 // To suppress missing implicit constructor warnings. |
1455 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor
ted"); } | 1481 factory OesTextureHalfFloatLinear._() { throw new UnsupportedError("Not suppor
ted"); } |
1456 | 1482 |
| 1483 @Deprecated("Internal Use Only") |
1457 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() { | 1484 static OesTextureHalfFloatLinear internalCreateOesTextureHalfFloatLinear() { |
1458 return new OesTextureHalfFloatLinear._internalWrap(); | 1485 return new OesTextureHalfFloatLinear._internalWrap(); |
1459 } | 1486 } |
1460 | 1487 |
1461 factory OesTextureHalfFloatLinear._internalWrap() { | 1488 factory OesTextureHalfFloatLinear._internalWrap() { |
1462 return new OesTextureHalfFloatLinear.internal_(); | 1489 return new OesTextureHalfFloatLinear.internal_(); |
1463 } | 1490 } |
1464 | 1491 |
1465 OesTextureHalfFloatLinear.internal_() { } | 1492 OesTextureHalfFloatLinear.internal_() { } |
1466 | 1493 |
1467 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1494 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1468 int get hashCode => unwrap_jso(this).hashCode; | 1495 int get hashCode => unwrap_jso(this).hashCode; |
1469 | 1496 |
1470 } | 1497 } |
1471 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1498 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1472 // for details. All rights reserved. Use of this source code is governed by a | 1499 // for details. All rights reserved. Use of this source code is governed by a |
1473 // BSD-style license that can be found in the LICENSE file. | 1500 // BSD-style license that can be found in the LICENSE file. |
1474 | 1501 |
1475 // WARNING: Do not edit - generated code. | 1502 // WARNING: Do not edit - generated code. |
1476 | 1503 |
1477 | 1504 |
1478 @DocsEditable() | 1505 @DocsEditable() |
1479 @DomName('OESVertexArrayObject') | 1506 @DomName('OESVertexArrayObject') |
1480 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 1507 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
1481 @Experimental() // experimental | 1508 @Experimental() // experimental |
1482 class OesVertexArrayObject extends DartHtmlDomObject { | 1509 class OesVertexArrayObject extends DartHtmlDomObject { |
1483 // To suppress missing implicit constructor warnings. | 1510 // To suppress missing implicit constructor warnings. |
1484 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported")
; } | 1511 factory OesVertexArrayObject._() { throw new UnsupportedError("Not supported")
; } |
1485 | 1512 |
| 1513 @Deprecated("Internal Use Only") |
1486 static OesVertexArrayObject internalCreateOesVertexArrayObject() { | 1514 static OesVertexArrayObject internalCreateOesVertexArrayObject() { |
1487 return new OesVertexArrayObject._internalWrap(); | 1515 return new OesVertexArrayObject._internalWrap(); |
1488 } | 1516 } |
1489 | 1517 |
1490 factory OesVertexArrayObject._internalWrap() { | 1518 factory OesVertexArrayObject._internalWrap() { |
1491 return new OesVertexArrayObject.internal_(); | 1519 return new OesVertexArrayObject.internal_(); |
1492 } | 1520 } |
1493 | 1521 |
1494 OesVertexArrayObject.internal_() { } | 1522 OesVertexArrayObject.internal_() { } |
1495 | 1523 |
(...skipping 28 matching lines...) Expand all Loading... |
1524 // WARNING: Do not edit - generated code. | 1552 // WARNING: Do not edit - generated code. |
1525 | 1553 |
1526 | 1554 |
1527 @DocsEditable() | 1555 @DocsEditable() |
1528 @DomName('WebGLProgram') | 1556 @DomName('WebGLProgram') |
1529 @Unstable() | 1557 @Unstable() |
1530 class Program extends DartHtmlDomObject { | 1558 class Program extends DartHtmlDomObject { |
1531 // To suppress missing implicit constructor warnings. | 1559 // To suppress missing implicit constructor warnings. |
1532 factory Program._() { throw new UnsupportedError("Not supported"); } | 1560 factory Program._() { throw new UnsupportedError("Not supported"); } |
1533 | 1561 |
| 1562 @Deprecated("Internal Use Only") |
1534 static Program internalCreateProgram() { | 1563 static Program internalCreateProgram() { |
1535 return new Program._internalWrap(); | 1564 return new Program._internalWrap(); |
1536 } | 1565 } |
1537 | 1566 |
1538 factory Program._internalWrap() { | 1567 factory Program._internalWrap() { |
1539 return new Program.internal_(); | 1568 return new Program.internal_(); |
1540 } | 1569 } |
1541 | 1570 |
1542 Program.internal_() { } | 1571 Program.internal_() { } |
1543 | 1572 |
1544 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1573 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1545 int get hashCode => unwrap_jso(this).hashCode; | 1574 int get hashCode => unwrap_jso(this).hashCode; |
1546 | 1575 |
1547 } | 1576 } |
1548 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1577 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1549 // for details. All rights reserved. Use of this source code is governed by a | 1578 // for details. All rights reserved. Use of this source code is governed by a |
1550 // BSD-style license that can be found in the LICENSE file. | 1579 // BSD-style license that can be found in the LICENSE file. |
1551 | 1580 |
1552 // WARNING: Do not edit - generated code. | 1581 // WARNING: Do not edit - generated code. |
1553 | 1582 |
1554 | 1583 |
1555 @DocsEditable() | 1584 @DocsEditable() |
1556 @DomName('WebGLRenderbuffer') | 1585 @DomName('WebGLRenderbuffer') |
1557 @Unstable() | 1586 @Unstable() |
1558 class Renderbuffer extends DartHtmlDomObject { | 1587 class Renderbuffer extends DartHtmlDomObject { |
1559 // To suppress missing implicit constructor warnings. | 1588 // To suppress missing implicit constructor warnings. |
1560 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); } | 1589 factory Renderbuffer._() { throw new UnsupportedError("Not supported"); } |
1561 | 1590 |
| 1591 @Deprecated("Internal Use Only") |
1562 static Renderbuffer internalCreateRenderbuffer() { | 1592 static Renderbuffer internalCreateRenderbuffer() { |
1563 return new Renderbuffer._internalWrap(); | 1593 return new Renderbuffer._internalWrap(); |
1564 } | 1594 } |
1565 | 1595 |
1566 factory Renderbuffer._internalWrap() { | 1596 factory Renderbuffer._internalWrap() { |
1567 return new Renderbuffer.internal_(); | 1597 return new Renderbuffer.internal_(); |
1568 } | 1598 } |
1569 | 1599 |
1570 Renderbuffer.internal_() { } | 1600 Renderbuffer.internal_() { } |
1571 | 1601 |
1572 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 1602 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
1573 int get hashCode => unwrap_jso(this).hashCode; | 1603 int get hashCode => unwrap_jso(this).hashCode; |
1574 | 1604 |
1575 } | 1605 } |
1576 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1606 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
1577 // for details. All rights reserved. Use of this source code is governed by a | 1607 // for details. All rights reserved. Use of this source code is governed by a |
1578 // BSD-style license that can be found in the LICENSE file. | 1608 // BSD-style license that can be found in the LICENSE file. |
1579 | 1609 |
1580 | 1610 |
1581 @DomName('WebGLRenderingContext') | 1611 @DomName('WebGLRenderingContext') |
1582 @SupportedBrowser(SupportedBrowser.CHROME) | 1612 @SupportedBrowser(SupportedBrowser.CHROME) |
1583 @SupportedBrowser(SupportedBrowser.FIREFOX) | 1613 @SupportedBrowser(SupportedBrowser.FIREFOX) |
1584 @Experimental() | 1614 @Experimental() |
1585 @Unstable() | 1615 @Unstable() |
1586 class RenderingContext extends DartHtmlDomObject implements CanvasRenderingConte
xt { | 1616 class RenderingContext extends DartHtmlDomObject implements CanvasRenderingConte
xt { |
1587 // To suppress missing implicit constructor warnings. | 1617 // To suppress missing implicit constructor warnings. |
1588 factory RenderingContext._() { throw new UnsupportedError("Not supported"); } | 1618 factory RenderingContext._() { throw new UnsupportedError("Not supported"); } |
1589 | 1619 |
| 1620 @Deprecated("Internal Use Only") |
1590 static RenderingContext internalCreateRenderingContext() { | 1621 static RenderingContext internalCreateRenderingContext() { |
1591 return new RenderingContext._internalWrap(); | 1622 return new RenderingContext._internalWrap(); |
1592 } | 1623 } |
1593 | 1624 |
1594 factory RenderingContext._internalWrap() { | 1625 factory RenderingContext._internalWrap() { |
1595 return new RenderingContext.internal_(); | 1626 return new RenderingContext.internal_(); |
1596 } | 1627 } |
1597 | 1628 |
1598 RenderingContext.internal_() { } | 1629 RenderingContext.internal_() { } |
1599 | 1630 |
(...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3525 | 3556 |
3526 // WARNING: Do not edit - generated code. | 3557 // WARNING: Do not edit - generated code. |
3527 | 3558 |
3528 | 3559 |
3529 @DocsEditable() | 3560 @DocsEditable() |
3530 @DomName('WebGLShader') | 3561 @DomName('WebGLShader') |
3531 class Shader extends DartHtmlDomObject { | 3562 class Shader extends DartHtmlDomObject { |
3532 // To suppress missing implicit constructor warnings. | 3563 // To suppress missing implicit constructor warnings. |
3533 factory Shader._() { throw new UnsupportedError("Not supported"); } | 3564 factory Shader._() { throw new UnsupportedError("Not supported"); } |
3534 | 3565 |
| 3566 @Deprecated("Internal Use Only") |
3535 static Shader internalCreateShader() { | 3567 static Shader internalCreateShader() { |
3536 return new Shader._internalWrap(); | 3568 return new Shader._internalWrap(); |
3537 } | 3569 } |
3538 | 3570 |
3539 factory Shader._internalWrap() { | 3571 factory Shader._internalWrap() { |
3540 return new Shader.internal_(); | 3572 return new Shader.internal_(); |
3541 } | 3573 } |
3542 | 3574 |
3543 Shader.internal_() { } | 3575 Shader.internal_() { } |
3544 | 3576 |
3545 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3577 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3546 int get hashCode => unwrap_jso(this).hashCode; | 3578 int get hashCode => unwrap_jso(this).hashCode; |
3547 | 3579 |
3548 } | 3580 } |
3549 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3581 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3550 // for details. All rights reserved. Use of this source code is governed by a | 3582 // for details. All rights reserved. Use of this source code is governed by a |
3551 // BSD-style license that can be found in the LICENSE file. | 3583 // BSD-style license that can be found in the LICENSE file. |
3552 | 3584 |
3553 // WARNING: Do not edit - generated code. | 3585 // WARNING: Do not edit - generated code. |
3554 | 3586 |
3555 | 3587 |
3556 @DocsEditable() | 3588 @DocsEditable() |
3557 @DomName('WebGLShaderPrecisionFormat') | 3589 @DomName('WebGLShaderPrecisionFormat') |
3558 class ShaderPrecisionFormat extends DartHtmlDomObject { | 3590 class ShaderPrecisionFormat extends DartHtmlDomObject { |
3559 // To suppress missing implicit constructor warnings. | 3591 // To suppress missing implicit constructor warnings. |
3560 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported"
); } | 3592 factory ShaderPrecisionFormat._() { throw new UnsupportedError("Not supported"
); } |
3561 | 3593 |
| 3594 @Deprecated("Internal Use Only") |
3562 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() { | 3595 static ShaderPrecisionFormat internalCreateShaderPrecisionFormat() { |
3563 return new ShaderPrecisionFormat._internalWrap(); | 3596 return new ShaderPrecisionFormat._internalWrap(); |
3564 } | 3597 } |
3565 | 3598 |
3566 factory ShaderPrecisionFormat._internalWrap() { | 3599 factory ShaderPrecisionFormat._internalWrap() { |
3567 return new ShaderPrecisionFormat.internal_(); | 3600 return new ShaderPrecisionFormat.internal_(); |
3568 } | 3601 } |
3569 | 3602 |
3570 ShaderPrecisionFormat.internal_() { } | 3603 ShaderPrecisionFormat.internal_() { } |
3571 | 3604 |
(...skipping 19 matching lines...) Expand all Loading... |
3591 | 3624 |
3592 // WARNING: Do not edit - generated code. | 3625 // WARNING: Do not edit - generated code. |
3593 | 3626 |
3594 | 3627 |
3595 @DocsEditable() | 3628 @DocsEditable() |
3596 @DomName('WebGLTexture') | 3629 @DomName('WebGLTexture') |
3597 class Texture extends DartHtmlDomObject { | 3630 class Texture extends DartHtmlDomObject { |
3598 // To suppress missing implicit constructor warnings. | 3631 // To suppress missing implicit constructor warnings. |
3599 factory Texture._() { throw new UnsupportedError("Not supported"); } | 3632 factory Texture._() { throw new UnsupportedError("Not supported"); } |
3600 | 3633 |
| 3634 @Deprecated("Internal Use Only") |
3601 static Texture internalCreateTexture() { | 3635 static Texture internalCreateTexture() { |
3602 return new Texture._internalWrap(); | 3636 return new Texture._internalWrap(); |
3603 } | 3637 } |
3604 | 3638 |
3605 factory Texture._internalWrap() { | 3639 factory Texture._internalWrap() { |
3606 return new Texture.internal_(); | 3640 return new Texture.internal_(); |
3607 } | 3641 } |
3608 | 3642 |
3609 Texture.internal_() { } | 3643 Texture.internal_() { } |
3610 | 3644 |
3611 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3645 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3612 int get hashCode => unwrap_jso(this).hashCode; | 3646 int get hashCode => unwrap_jso(this).hashCode; |
3613 | 3647 |
3614 } | 3648 } |
3615 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3649 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3616 // for details. All rights reserved. Use of this source code is governed by a | 3650 // for details. All rights reserved. Use of this source code is governed by a |
3617 // BSD-style license that can be found in the LICENSE file. | 3651 // BSD-style license that can be found in the LICENSE file. |
3618 | 3652 |
3619 // WARNING: Do not edit - generated code. | 3653 // WARNING: Do not edit - generated code. |
3620 | 3654 |
3621 | 3655 |
3622 @DocsEditable() | 3656 @DocsEditable() |
3623 @DomName('WebGLUniformLocation') | 3657 @DomName('WebGLUniformLocation') |
3624 class UniformLocation extends DartHtmlDomObject { | 3658 class UniformLocation extends DartHtmlDomObject { |
3625 // To suppress missing implicit constructor warnings. | 3659 // To suppress missing implicit constructor warnings. |
3626 factory UniformLocation._() { throw new UnsupportedError("Not supported"); } | 3660 factory UniformLocation._() { throw new UnsupportedError("Not supported"); } |
3627 | 3661 |
| 3662 @Deprecated("Internal Use Only") |
3628 static UniformLocation internalCreateUniformLocation() { | 3663 static UniformLocation internalCreateUniformLocation() { |
3629 return new UniformLocation._internalWrap(); | 3664 return new UniformLocation._internalWrap(); |
3630 } | 3665 } |
3631 | 3666 |
3632 factory UniformLocation._internalWrap() { | 3667 factory UniformLocation._internalWrap() { |
3633 return new UniformLocation.internal_(); | 3668 return new UniformLocation.internal_(); |
3634 } | 3669 } |
3635 | 3670 |
3636 UniformLocation.internal_() { } | 3671 UniformLocation.internal_() { } |
3637 | 3672 |
3638 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3673 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3639 int get hashCode => unwrap_jso(this).hashCode; | 3674 int get hashCode => unwrap_jso(this).hashCode; |
3640 | 3675 |
3641 } | 3676 } |
3642 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3677 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3643 // for details. All rights reserved. Use of this source code is governed by a | 3678 // for details. All rights reserved. Use of this source code is governed by a |
3644 // BSD-style license that can be found in the LICENSE file. | 3679 // BSD-style license that can be found in the LICENSE file. |
3645 | 3680 |
3646 // WARNING: Do not edit - generated code. | 3681 // WARNING: Do not edit - generated code. |
3647 | 3682 |
3648 | 3683 |
3649 @DocsEditable() | 3684 @DocsEditable() |
3650 @DomName('WebGLVertexArrayObjectOES') | 3685 @DomName('WebGLVertexArrayObjectOES') |
3651 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 3686 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
3652 @Experimental() // experimental | 3687 @Experimental() // experimental |
3653 class VertexArrayObject extends DartHtmlDomObject { | 3688 class VertexArrayObject extends DartHtmlDomObject { |
3654 // To suppress missing implicit constructor warnings. | 3689 // To suppress missing implicit constructor warnings. |
3655 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 3690 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
3656 | 3691 |
| 3692 @Deprecated("Internal Use Only") |
3657 static VertexArrayObject internalCreateVertexArrayObject() { | 3693 static VertexArrayObject internalCreateVertexArrayObject() { |
3658 return new VertexArrayObject._internalWrap(); | 3694 return new VertexArrayObject._internalWrap(); |
3659 } | 3695 } |
3660 | 3696 |
3661 factory VertexArrayObject._internalWrap() { | 3697 factory VertexArrayObject._internalWrap() { |
3662 return new VertexArrayObject.internal_(); | 3698 return new VertexArrayObject.internal_(); |
3663 } | 3699 } |
3664 | 3700 |
3665 VertexArrayObject.internal_() { } | 3701 VertexArrayObject.internal_() { } |
3666 | 3702 |
3667 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); | 3703 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(
this, other); |
3668 int get hashCode => unwrap_jso(this).hashCode; | 3704 int get hashCode => unwrap_jso(this).hashCode; |
3669 | 3705 |
3670 } | 3706 } |
3671 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3707 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
3672 // for details. All rights reserved. Use of this source code is governed by a | 3708 // for details. All rights reserved. Use of this source code is governed by a |
3673 // BSD-style license that can be found in the LICENSE file. | 3709 // BSD-style license that can be found in the LICENSE file. |
3674 | 3710 |
3675 // WARNING: Do not edit - generated code. | 3711 // WARNING: Do not edit - generated code. |
3676 | 3712 |
3677 | 3713 |
3678 @DocsEditable() | 3714 @DocsEditable() |
3679 @DomName('WebGLRenderingContextBase') | 3715 @DomName('WebGLRenderingContextBase') |
3680 @Experimental() // untriaged | 3716 @Experimental() // untriaged |
3681 class _WebGLRenderingContextBase extends DartHtmlDomObject { | 3717 class _WebGLRenderingContextBase extends DartHtmlDomObject { |
3682 // To suppress missing implicit constructor warnings. | 3718 // To suppress missing implicit constructor warnings. |
3683 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } | 3719 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } |
3684 | 3720 |
3685 } | 3721 } |
OLD | NEW |