| OLD | NEW |
| 1 | 1 |
| 2 class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
ngContext" { | 2 class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
ngContext" { |
| 3 | 3 |
| 4 static final int ACTIVE_ATTRIBUTES = 0x8B89; | 4 static final int ACTIVE_ATTRIBUTES = 0x8B89; |
| 5 | 5 |
| 6 static final int ACTIVE_TEXTURE = 0x84E0; | 6 static final int ACTIVE_TEXTURE = 0x84E0; |
| 7 | 7 |
| 8 static final int ACTIVE_UNIFORMS = 0x8B86; | 8 static final int ACTIVE_UNIFORMS = 0x8B86; |
| 9 | 9 |
| 10 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; | 10 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 void stencilFuncSeparate(int face, int func, int ref, int mask) native; | 788 void stencilFuncSeparate(int face, int func, int ref, int mask) native; |
| 789 | 789 |
| 790 void stencilMask(int mask) native; | 790 void stencilMask(int mask) native; |
| 791 | 791 |
| 792 void stencilMaskSeparate(int face, int mask) native; | 792 void stencilMaskSeparate(int face, int mask) native; |
| 793 | 793 |
| 794 void stencilOp(int fail, int zfail, int zpass) native; | 794 void stencilOp(int fail, int zfail, int zpass) native; |
| 795 | 795 |
| 796 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native; | 796 void stencilOpSeparate(int face, int fail, int zfail, int zpass) native; |
| 797 | 797 |
| 798 void texImage2D(int target, int level, int internalformat, int format_OR_width
, int height_OR_type, var border_OR_canvas_OR_image_OR_pixels, [int format = nul
l, int type = null, ArrayBufferView pixels = null]) native; | 798 void texImage2D(int target, int level, int internalformat, int format_OR_width
, int height_OR_type, var border_OR_canvas_OR_image_OR_pixels_OR_video, [int for
mat = null, int type = null, ArrayBufferView pixels = null]) native; |
| 799 | 799 |
| 800 void texParameterf(int target, int pname, num param) native; | 800 void texParameterf(int target, int pname, num param) native; |
| 801 | 801 |
| 802 void texParameteri(int target, int pname, int param) native; | 802 void texParameteri(int target, int pname, int param) native; |
| 803 | 803 |
| 804 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format
_OR_width, int height_OR_type, var canvas_OR_format_OR_image_OR_pixels, [int typ
e = null, ArrayBufferView pixels = null]) native; | 804 void texSubImage2D(int target, int level, int xoffset, int yoffset, int format
_OR_width, int height_OR_type, var canvas_OR_format_OR_image_OR_pixels_OR_video,
[int type = null, ArrayBufferView pixels = null]) native; |
| 805 | 805 |
| 806 void uniform1f(WebGLUniformLocation location, num x) native; | 806 void uniform1f(WebGLUniformLocation location, num x) native; |
| 807 | 807 |
| 808 void uniform1fv(WebGLUniformLocation location, Float32Array v) native; | 808 void uniform1fv(WebGLUniformLocation location, Float32Array v) native; |
| 809 | 809 |
| 810 void uniform1i(WebGLUniformLocation location, int x) native; | 810 void uniform1i(WebGLUniformLocation location, int x) native; |
| 811 | 811 |
| 812 void uniform1iv(WebGLUniformLocation location, Int32Array v) native; | 812 void uniform1iv(WebGLUniformLocation location, Int32Array v) native; |
| 813 | 813 |
| 814 void uniform2f(WebGLUniformLocation location, num x, num y) native; | 814 void uniform2f(WebGLUniformLocation location, num x, num y) native; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 void vertexAttrib3fv(int indx, Float32Array values) native; | 858 void vertexAttrib3fv(int indx, Float32Array values) native; |
| 859 | 859 |
| 860 void vertexAttrib4f(int indx, num x, num y, num z, num w) native; | 860 void vertexAttrib4f(int indx, num x, num y, num z, num w) native; |
| 861 | 861 |
| 862 void vertexAttrib4fv(int indx, Float32Array values) native; | 862 void vertexAttrib4fv(int indx, Float32Array values) native; |
| 863 | 863 |
| 864 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st
ride, int offset) native; | 864 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st
ride, int offset) native; |
| 865 | 865 |
| 866 void viewport(int x, int y, int width, int height) native; | 866 void viewport(int x, int y, int width, int height) native; |
| 867 } | 867 } |
| OLD | NEW |