OLD | NEW |
1 library dart.dom.web_gl; | 1 library dart.dom.web_gl; |
2 | 2 |
3 import 'dart:async'; | 3 import 'dart:async'; |
4 import 'dart:collection'; | 4 import 'dart:collection'; |
5 import 'dart:_collection-dev'; | 5 import 'dart:_collection-dev'; |
6 import 'dart:html'; | 6 import 'dart:html'; |
7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
10 // DO NOT EDIT | 10 // DO NOT EDIT |
(...skipping 2166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2177 | 2177 |
2178 @DomName('WebGLRenderingContext.blendFunc') | 2178 @DomName('WebGLRenderingContext.blendFunc') |
2179 @DocsEditable | 2179 @DocsEditable |
2180 void blendFunc(int sfactor, int dfactor) native "WebGLRenderingContext_blendFu
nc_Callback"; | 2180 void blendFunc(int sfactor, int dfactor) native "WebGLRenderingContext_blendFu
nc_Callback"; |
2181 | 2181 |
2182 @DomName('WebGLRenderingContext.blendFuncSeparate') | 2182 @DomName('WebGLRenderingContext.blendFuncSeparate') |
2183 @DocsEditable | 2183 @DocsEditable |
2184 void blendFuncSeparate(int srcRGB, int dstRGB, int srcAlpha, int dstAlpha) nat
ive "WebGLRenderingContext_blendFuncSeparate_Callback"; | 2184 void blendFuncSeparate(int srcRGB, int dstRGB, int srcAlpha, int dstAlpha) nat
ive "WebGLRenderingContext_blendFuncSeparate_Callback"; |
2185 | 2185 |
2186 void bufferData(int target, data_OR_size, int usage) { | 2186 void bufferData(int target, data_OR_size, int usage) { |
2187 if ((target is int || target == null) && (data_OR_size is TypedData || data_
OR_size == null) && (usage is int || usage == null)) { | 2187 if ((usage is int || usage == null) && (data_OR_size is TypedData || data_OR
_size == null) && (target is int || target == null)) { |
2188 _bufferData_1(target, data_OR_size, usage); | 2188 _bufferData_1(target, data_OR_size, usage); |
2189 return; | 2189 return; |
2190 } | 2190 } |
2191 if ((target is int || target == null) && (data_OR_size is ByteBuffer || data
_OR_size == null) && (usage is int || usage == null)) { | 2191 if ((usage is int || usage == null) && (data_OR_size is ByteBuffer || data_O
R_size == null) && (target is int || target == null)) { |
2192 _bufferData_2(target, data_OR_size, usage); | 2192 _bufferData_2(target, data_OR_size, usage); |
2193 return; | 2193 return; |
2194 } | 2194 } |
2195 if ((target is int || target == null) && (data_OR_size is int || data_OR_siz
e == null) && (usage is int || usage == null)) { | 2195 if ((usage is int || usage == null) && (data_OR_size is int || data_OR_size
== null) && (target is int || target == null)) { |
2196 _bufferData_3(target, data_OR_size, usage); | 2196 _bufferData_3(target, data_OR_size, usage); |
2197 return; | 2197 return; |
2198 } | 2198 } |
2199 throw new ArgumentError("Incorrect number or type of arguments"); | 2199 throw new ArgumentError("Incorrect number or type of arguments"); |
2200 } | 2200 } |
2201 | 2201 |
2202 void _bufferData_1(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_1_Callback"; | 2202 void _bufferData_1(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_1_Callback"; |
2203 | 2203 |
2204 void _bufferData_2(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_2_Callback"; | 2204 void _bufferData_2(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_2_Callback"; |
2205 | 2205 |
2206 void _bufferData_3(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_3_Callback"; | 2206 void _bufferData_3(target, data_OR_size, usage) native "WebGLRenderingContext_
_bufferData_3_Callback"; |
2207 | 2207 |
2208 void bufferSubData(int target, int offset, data) { | 2208 void bufferSubData(int target, int offset, data) { |
2209 if ((target is int || target == null) && (offset is int || offset == null) &
& (data is TypedData || data == null)) { | 2209 if ((data is TypedData || data == null) && (offset is int || offset == null)
&& (target is int || target == null)) { |
2210 _bufferSubData_1(target, offset, data); | 2210 _bufferSubData_1(target, offset, data); |
2211 return; | 2211 return; |
2212 } | 2212 } |
2213 if ((target is int || target == null) && (offset is int || offset == null) &
& (data is ByteBuffer || data == null)) { | 2213 if ((data is ByteBuffer || data == null) && (offset is int || offset == null
) && (target is int || target == null)) { |
2214 _bufferSubData_2(target, offset, data); | 2214 _bufferSubData_2(target, offset, data); |
2215 return; | 2215 return; |
2216 } | 2216 } |
2217 throw new ArgumentError("Incorrect number or type of arguments"); | 2217 throw new ArgumentError("Incorrect number or type of arguments"); |
2218 } | 2218 } |
2219 | 2219 |
2220 void _bufferSubData_1(target, offset, data) native "WebGLRenderingContext__buf
ferSubData_1_Callback"; | 2220 void _bufferSubData_1(target, offset, data) native "WebGLRenderingContext__buf
ferSubData_1_Callback"; |
2221 | 2221 |
2222 void _bufferSubData_2(target, offset, data) native "WebGLRenderingContext__buf
ferSubData_2_Callback"; | 2222 void _bufferSubData_2(target, offset, data) native "WebGLRenderingContext__buf
ferSubData_2_Callback"; |
2223 | 2223 |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2563 | 2563 |
2564 @DomName('WebGLRenderingContext.stencilOp') | 2564 @DomName('WebGLRenderingContext.stencilOp') |
2565 @DocsEditable | 2565 @DocsEditable |
2566 void stencilOp(int fail, int zfail, int zpass) native "WebGLRenderingContext_s
tencilOp_Callback"; | 2566 void stencilOp(int fail, int zfail, int zpass) native "WebGLRenderingContext_s
tencilOp_Callback"; |
2567 | 2567 |
2568 @DomName('WebGLRenderingContext.stencilOpSeparate') | 2568 @DomName('WebGLRenderingContext.stencilOpSeparate') |
2569 @DocsEditable | 2569 @DocsEditable |
2570 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native "WebGL
RenderingContext_stencilOpSeparate_Callback"; | 2570 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native "WebGL
RenderingContext_stencilOpSeparate_Callback"; |
2571 | 2571 |
2572 void texImage2D(int target, int level, int internalformat, int format_OR_width
, int height_OR_type, border_OR_canvas_OR_image_OR_pixels_OR_video, [int format,
int type, TypedData pixels]) { | 2572 void texImage2D(int target, int level, int internalformat, int format_OR_width
, int height_OR_type, border_OR_canvas_OR_image_OR_pixels_OR_video, [int format,
int type, TypedData pixels]) { |
2573 if ((target is int || target == null) && (level is int || level == null) &&
(internalformat is int || internalformat == null) && (format_OR_width is int ||
format_OR_width == null) && (height_OR_type is int || height_OR_type == null) &&
(border_OR_canvas_OR_image_OR_pixels_OR_video is int || border_OR_canvas_OR_ima
ge_OR_pixels_OR_video == null) && (format is int || format == null) && (type is
int || type == null) && (pixels is TypedData || pixels == null)) { | 2573 if ((pixels is TypedData || pixels == null) && (type is int || type == null)
&& (format is int || format == null) && (border_OR_canvas_OR_image_OR_pixels_OR
_video is int || border_OR_canvas_OR_image_OR_pixels_OR_video == null) && (heigh
t_OR_type is int || height_OR_type == null) && (format_OR_width is int || format
_OR_width == null) && (internalformat is int || internalformat == null) && (leve
l is int || level == null) && (target is int || target == null)) { |
2574 _texImage2D_1(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video, format, type, pixels); | 2574 _texImage2D_1(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video, format, type, pixels); |
2575 return; | 2575 return; |
2576 } | 2576 } |
2577 if ((target is int || target == null) && (level is int || level == null) &&
(internalformat is int || internalformat == null) && (format_OR_width is int ||
format_OR_width == null) && (height_OR_type is int || height_OR_type == null) &&
(border_OR_canvas_OR_image_OR_pixels_OR_video is ImageData || border_OR_canvas_
OR_image_OR_pixels_OR_video == null) && !?format && !?type && !?pixels) { | 2577 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is ImageData || border_OR_
canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || height_
OR_type == null) && (format_OR_width is int || format_OR_width == null) && (inte
rnalformat is int || internalformat == null) && (level is int || level == null)
&& (target is int || target == null) && format == null && type == null && pixels
== null) { |
2578 _texImage2D_2(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); | 2578 _texImage2D_2(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); |
2579 return; | 2579 return; |
2580 } | 2580 } |
2581 if ((target is int || target == null) && (level is int || level == null) &&
(internalformat is int || internalformat == null) && (format_OR_width is int ||
format_OR_width == null) && (height_OR_type is int || height_OR_type == null) &&
(border_OR_canvas_OR_image_OR_pixels_OR_video is ImageElement || border_OR_canv
as_OR_image_OR_pixels_OR_video == null) && !?format && !?type && !?pixels) { | 2581 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is ImageElement || border_
OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig
ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (i
nternalformat is int || internalformat == null) && (level is int || level == nul
l) && (target is int || target == null) && format == null && type == null && pix
els == null) { |
2582 _texImage2D_3(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); | 2582 _texImage2D_3(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); |
2583 return; | 2583 return; |
2584 } | 2584 } |
2585 if ((target is int || target == null) && (level is int || level == null) &&
(internalformat is int || internalformat == null) && (format_OR_width is int ||
format_OR_width == null) && (height_OR_type is int || height_OR_type == null) &&
(border_OR_canvas_OR_image_OR_pixels_OR_video is CanvasElement || border_OR_can
vas_OR_image_OR_pixels_OR_video == null) && !?format && !?type && !?pixels) { | 2585 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is CanvasElement || border
_OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || hei
ght_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (
internalformat is int || internalformat == null) && (level is int || level == nu
ll) && (target is int || target == null) && format == null && type == null && pi
xels == null) { |
2586 _texImage2D_4(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); | 2586 _texImage2D_4(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); |
2587 return; | 2587 return; |
2588 } | 2588 } |
2589 if ((target is int || target == null) && (level is int || level == null) &&
(internalformat is int || internalformat == null) && (format_OR_width is int ||
format_OR_width == null) && (height_OR_type is int || height_OR_type == null) &&
(border_OR_canvas_OR_image_OR_pixels_OR_video is VideoElement || border_OR_canv
as_OR_image_OR_pixels_OR_video == null) && !?format && !?type && !?pixels) { | 2589 if ((border_OR_canvas_OR_image_OR_pixels_OR_video is VideoElement || border_
OR_canvas_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig
ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (i
nternalformat is int || internalformat == null) && (level is int || level == nul
l) && (target is int || target == null) && format == null && type == null && pix
els == null) { |
2590 _texImage2D_5(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); | 2590 _texImage2D_5(target, level, internalformat, format_OR_width, height_OR_ty
pe, border_OR_canvas_OR_image_OR_pixels_OR_video); |
2591 return; | 2591 return; |
2592 } | 2592 } |
2593 throw new ArgumentError("Incorrect number or type of arguments"); | 2593 throw new ArgumentError("Incorrect number or type of arguments"); |
2594 } | 2594 } |
2595 | 2595 |
2596 void _texImage2D_1(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video, format, type, pixels) native
"WebGLRenderingContext__texImage2D_1_Callback"; | 2596 void _texImage2D_1(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video, format, type, pixels) native
"WebGLRenderingContext__texImage2D_1_Callback"; |
2597 | 2597 |
2598 void _texImage2D_2(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_2_Callback"; | 2598 void _texImage2D_2(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_2_Callback"; |
2599 | 2599 |
2600 void _texImage2D_3(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_3_Callback"; | 2600 void _texImage2D_3(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_3_Callback"; |
2601 | 2601 |
2602 void _texImage2D_4(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_4_Callback"; | 2602 void _texImage2D_4(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_4_Callback"; |
2603 | 2603 |
2604 void _texImage2D_5(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_5_Callback"; | 2604 void _texImage2D_5(target, level, internalformat, format_OR_width, height_OR_t
ype, border_OR_canvas_OR_image_OR_pixels_OR_video) native "WebGLRenderingContext
__texImage2D_5_Callback"; |
2605 | 2605 |
2606 @DomName('WebGLRenderingContext.texParameterf') | 2606 @DomName('WebGLRenderingContext.texParameterf') |
2607 @DocsEditable | 2607 @DocsEditable |
2608 void texParameterf(int target, int pname, num param) native "WebGLRenderingCon
text_texParameterf_Callback"; | 2608 void texParameterf(int target, int pname, num param) native "WebGLRenderingCon
text_texParameterf_Callback"; |
2609 | 2609 |
2610 @DomName('WebGLRenderingContext.texParameteri') | 2610 @DomName('WebGLRenderingContext.texParameteri') |
2611 @DocsEditable | 2611 @DocsEditable |
2612 void texParameteri(int target, int pname, int param) native "WebGLRenderingCon
text_texParameteri_Callback"; | 2612 void texParameteri(int target, int pname, int param) native "WebGLRenderingCon
text_texParameteri_Callback"; |
2613 | 2613 |
2614 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format
_OR_width, int height_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, [in
t type, TypedData pixels]) { | 2614 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format
_OR_width, int height_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, [in
t type, TypedData pixels]) { |
2615 if ((target is int || target == null) && (level is int || level == null) &&
(xoffset is int || xoffset == null) && (yoffset is int || yoffset == null) && (f
ormat_OR_width is int || format_OR_width == null) && (height_OR_type is int || h
eight_OR_type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is int |
| canvas_OR_format_OR_image_OR_pixels_OR_video == null) && (type is int || type
== null) && (pixels is TypedData || pixels == null)) { | 2615 if ((pixels is TypedData || pixels == null) && (type is int || type == null)
&& (canvas_OR_format_OR_image_OR_pixels_OR_video is int || canvas_OR_format_OR_
image_OR_pixels_OR_video == null) && (height_OR_type is int || height_OR_type ==
null) && (format_OR_width is int || format_OR_width == null) && (yoffset is int
|| yoffset == null) && (xoffset is int || xoffset == null) && (level is int ||
level == null) && (target is int || target == null)) { |
2616 _texSubImage2D_1(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, type, pixels); | 2616 _texSubImage2D_1(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, type, pixels); |
2617 return; | 2617 return; |
2618 } | 2618 } |
2619 if ((target is int || target == null) && (level is int || level == null) &&
(xoffset is int || xoffset == null) && (yoffset is int || yoffset == null) && (f
ormat_OR_width is int || format_OR_width == null) && (height_OR_type is int || h
eight_OR_type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is Image
Data || canvas_OR_format_OR_image_OR_pixels_OR_video == null) && !?type && !?pix
els) { | 2619 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is ImageData || canvas_OR_
format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || height_
OR_type == null) && (format_OR_width is int || format_OR_width == null) && (yoff
set is int || yoffset == null) && (xoffset is int || xoffset == null) && (level
is int || level == null) && (target is int || target == null) && type == null &&
pixels == null) { |
2620 _texSubImage2D_2(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); | 2620 _texSubImage2D_2(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); |
2621 return; | 2621 return; |
2622 } | 2622 } |
2623 if ((target is int || target == null) && (level is int || level == null) &&
(xoffset is int || xoffset == null) && (yoffset is int || yoffset == null) && (f
ormat_OR_width is int || format_OR_width == null) && (height_OR_type is int || h
eight_OR_type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is Image
Element || canvas_OR_format_OR_image_OR_pixels_OR_video == null) && !?type && !?
pixels) { | 2623 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is ImageElement || canvas_
OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig
ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (y
offset is int || yoffset == null) && (xoffset is int || xoffset == null) && (lev
el is int || level == null) && (target is int || target == null) && type == null
&& pixels == null) { |
2624 _texSubImage2D_3(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); | 2624 _texSubImage2D_3(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); |
2625 return; | 2625 return; |
2626 } | 2626 } |
2627 if ((target is int || target == null) && (level is int || level == null) &&
(xoffset is int || xoffset == null) && (yoffset is int || yoffset == null) && (f
ormat_OR_width is int || format_OR_width == null) && (height_OR_type is int || h
eight_OR_type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is Canva
sElement || canvas_OR_format_OR_image_OR_pixels_OR_video == null) && !?type && !
?pixels) { | 2627 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is CanvasElement || canvas
_OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || hei
ght_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (
yoffset is int || yoffset == null) && (xoffset is int || xoffset == null) && (le
vel is int || level == null) && (target is int || target == null) && type == nul
l && pixels == null) { |
2628 _texSubImage2D_4(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); | 2628 _texSubImage2D_4(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); |
2629 return; | 2629 return; |
2630 } | 2630 } |
2631 if ((target is int || target == null) && (level is int || level == null) &&
(xoffset is int || xoffset == null) && (yoffset is int || yoffset == null) && (f
ormat_OR_width is int || format_OR_width == null) && (height_OR_type is int || h
eight_OR_type == null) && (canvas_OR_format_OR_image_OR_pixels_OR_video is Video
Element || canvas_OR_format_OR_image_OR_pixels_OR_video == null) && !?type && !?
pixels) { | 2631 if ((canvas_OR_format_OR_image_OR_pixels_OR_video is VideoElement || canvas_
OR_format_OR_image_OR_pixels_OR_video == null) && (height_OR_type is int || heig
ht_OR_type == null) && (format_OR_width is int || format_OR_width == null) && (y
offset is int || yoffset == null) && (xoffset is int || xoffset == null) && (lev
el is int || level == null) && (target is int || target == null) && type == null
&& pixels == null) { |
2632 _texSubImage2D_5(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); | 2632 _texSubImage2D_5(target, level, xoffset, yoffset, format_OR_width, height_
OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video); |
2633 return; | 2633 return; |
2634 } | 2634 } |
2635 throw new ArgumentError("Incorrect number or type of arguments"); | 2635 throw new ArgumentError("Incorrect number or type of arguments"); |
2636 } | 2636 } |
2637 | 2637 |
2638 void _texSubImage2D_1(target, level, xoffset, yoffset, format_OR_width, height
_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, type, pixels) native "We
bGLRenderingContext__texSubImage2D_1_Callback"; | 2638 void _texSubImage2D_1(target, level, xoffset, yoffset, format_OR_width, height
_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, type, pixels) native "We
bGLRenderingContext__texSubImage2D_1_Callback"; |
2639 | 2639 |
2640 void _texSubImage2D_2(target, level, xoffset, yoffset, format_OR_width, height
_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video) native "WebGLRenderingCo
ntext__texSubImage2D_2_Callback"; | 2640 void _texSubImage2D_2(target, level, xoffset, yoffset, format_OR_width, height
_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video) native "WebGLRenderingCo
ntext__texSubImage2D_2_Callback"; |
2641 | 2641 |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2842 | 2842 |
2843 | 2843 |
2844 @DocsEditable | 2844 @DocsEditable |
2845 @DomName('WebGLVertexArrayObjectOES') | 2845 @DomName('WebGLVertexArrayObjectOES') |
2846 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2846 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
2847 @Experimental // experimental | 2847 @Experimental // experimental |
2848 class VertexArrayObject extends NativeFieldWrapperClass1 { | 2848 class VertexArrayObject extends NativeFieldWrapperClass1 { |
2849 VertexArrayObject.internal(); | 2849 VertexArrayObject.internal(); |
2850 | 2850 |
2851 } | 2851 } |
OLD | NEW |