aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webgl2renderingcontext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/webgl2renderingcontext.rs')
-rw-r--r--components/script/dom/webgl2renderingcontext.rs914
1 files changed, 914 insertions, 0 deletions
diff --git a/components/script/dom/webgl2renderingcontext.rs b/components/script/dom/webgl2renderingcontext.rs
new file mode 100644
index 00000000000..6f2cd362845
--- /dev/null
+++ b/components/script/dom/webgl2renderingcontext.rs
@@ -0,0 +1,914 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+/// https://www.khronos.org/registry/webgl/specs/latest/2.0/webgl.idl
+use canvas_traits::webgl::WebGLVersion;
+use dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding;
+use dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding::WebGL2RenderingContextMethods;
+use dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLContextAttributes;
+use dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLRenderingContextMethods;
+use dom::bindings::codegen::UnionTypes::ImageDataOrHTMLImageElementOrHTMLCanvasElementOrHTMLVideoElement;
+use dom::bindings::error::Fallible;
+use dom::bindings::nonnull::NonNullJSObjectPtr;
+use dom::bindings::reflector::{reflect_dom_object, Reflector};
+use dom::bindings::root::{Dom, DomRoot, LayoutDom};
+use dom::bindings::str::DOMString;
+use dom::htmlcanvaselement::HTMLCanvasElement;
+use dom::htmliframeelement::HTMLIFrameElement;
+use dom::webglactiveinfo::WebGLActiveInfo;
+use dom::webglbuffer::WebGLBuffer;
+use dom::webglframebuffer::WebGLFramebuffer;
+use dom::webglprogram::WebGLProgram;
+use dom::webglrenderbuffer::WebGLRenderbuffer;
+use dom::webglrenderingcontext::{LayoutCanvasWebGLRenderingContextHelpers, WebGLRenderingContext};
+use dom::webglshader::WebGLShader;
+use dom::webglshaderprecisionformat::WebGLShaderPrecisionFormat;
+use dom::webgltexture::WebGLTexture;
+use dom::webgluniformlocation::WebGLUniformLocation;
+use dom::window::Window;
+use dom_struct::dom_struct;
+use euclid::Size2D;
+use js::jsapi::{JSContext, JSObject};
+use js::jsval::JSVal;
+use offscreen_gl_context::GLContextAttributes;
+use script_layout_interface::HTMLCanvasDataSource;
+
+#[dom_struct]
+pub struct WebGL2RenderingContext {
+ reflector_: Reflector,
+ base: Dom<WebGLRenderingContext>,
+}
+
+impl WebGL2RenderingContext {
+ fn new_inherited(
+ window: &Window,
+ canvas: &HTMLCanvasElement,
+ size: Size2D<i32>,
+ attrs: GLContextAttributes
+ ) -> Option<WebGL2RenderingContext> {
+ let base = WebGLRenderingContext::new(window, canvas, WebGLVersion::WebGL2, size, attrs)?;
+ Some(WebGL2RenderingContext {
+ reflector_: Reflector::new(),
+ base: Dom::from_ref(&*base),
+ })
+ }
+
+ #[allow(unrooted_must_root)]
+ pub fn new(
+ window: &Window,
+ canvas: &HTMLCanvasElement,
+ size: Size2D<i32>,
+ attrs: GLContextAttributes
+ ) -> Option<DomRoot<WebGL2RenderingContext>> {
+ WebGL2RenderingContext::new_inherited(window, canvas, size, attrs).map(|ctx| {
+ reflect_dom_object(Box::new(ctx), window, WebGL2RenderingContextBinding::Wrap)
+ })
+ }
+}
+
+impl WebGL2RenderingContext {
+ pub fn recreate(&self, size: Size2D<i32>) {
+ self.base.recreate(size)
+ }
+
+ pub fn base_context(&self) -> DomRoot<WebGLRenderingContext> {
+ DomRoot::from_ref(&*self.base)
+ }
+}
+
+impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.1
+ fn Canvas(&self) -> DomRoot<HTMLCanvasElement> {
+ self.base.Canvas()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11
+ fn Flush(&self) {
+ self.base.Flush()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11
+ fn Finish(&self) {
+ self.base.Finish()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.1
+ fn DrawingBufferWidth(&self) -> i32 {
+ self.base.DrawingBufferWidth()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.1
+ fn DrawingBufferHeight(&self) -> i32 {
+ self.base.DrawingBufferHeight()
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ unsafe fn GetBufferParameter(&self, _cx: *mut JSContext, target: u32, parameter: u32) -> JSVal {
+ self.base.GetBufferParameter(_cx, target, parameter)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ unsafe fn GetParameter(&self, cx: *mut JSContext, parameter: u32) -> JSVal {
+ self.base.GetParameter(cx, parameter)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn GetError(&self) -> u32 {
+ self.base.GetError()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.2
+ fn GetContextAttributes(&self) -> Option<WebGLContextAttributes> {
+ self.base.GetContextAttributes()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.14
+ fn GetSupportedExtensions(&self) -> Option<Vec<DOMString>> {
+ self.base.GetSupportedExtensions()
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.14
+ unsafe fn GetExtension(&self, cx: *mut JSContext, name: DOMString) -> Option<NonNullJSObjectPtr> {
+ self.base.GetExtension(cx, name)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn ActiveTexture(&self, texture: u32) {
+ self.base.ActiveTexture(texture)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn BlendColor(&self, r: f32, g: f32, b: f32, a: f32) {
+ self.base.BlendColor(r, g, b, a)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn BlendEquation(&self, mode: u32) {
+ self.base.BlendEquation(mode)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn BlendEquationSeparate(&self, mode_rgb: u32, mode_alpha: u32) {
+ self.base.BlendEquationSeparate(mode_rgb, mode_alpha)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn BlendFunc(&self, src_factor: u32, dest_factor: u32) {
+ self.base.BlendFunc(src_factor, dest_factor)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn BlendFuncSeparate(&self, src_rgb: u32, dest_rgb: u32, src_alpha: u32, dest_alpha: u32) {
+ self.base.BlendFuncSeparate(src_rgb, dest_rgb, src_alpha, dest_alpha)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn AttachShader(&self, program: Option<&WebGLProgram>, shader: Option<&WebGLShader>) {
+ self.base.AttachShader(program, shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn DetachShader(&self, program: Option<&WebGLProgram>, shader: Option<&WebGLShader>) {
+ self.base.DetachShader(program, shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn BindAttribLocation(&self, program: Option<&WebGLProgram>,
+ index: u32, name: DOMString) {
+ self.base.BindAttribLocation(program, index, name)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ fn BindBuffer(&self, target: u32, buffer: Option<&WebGLBuffer>) {
+ self.base.BindBuffer(target, buffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn BindFramebuffer(&self, target: u32, framebuffer: Option<&WebGLFramebuffer>) {
+ self.base.BindFramebuffer(target, framebuffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7
+ fn BindRenderbuffer(&self, target: u32, renderbuffer: Option<&WebGLRenderbuffer>) {
+ self.base.BindRenderbuffer(target, renderbuffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn BindTexture(&self, target: u32, texture: Option<&WebGLTexture>) {
+ self.base.BindTexture(target, texture)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn GenerateMipmap(&self, target: u32) {
+ self.base.GenerateMipmap(target)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ unsafe fn BufferData(&self, cx: *mut JSContext, target: u32, data: *mut JSObject, usage: u32) -> Fallible<()> {
+ self.base.BufferData(cx, target, data, usage)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ fn BufferData_(&self, target: u32, size: i64, usage: u32) -> Fallible<()> {
+ self.base.BufferData_(target, size, usage)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ unsafe fn BufferSubData(&self, cx: *mut JSContext, target: u32, offset: i64, data: *mut JSObject) -> Fallible<()> {
+ self.base.BufferSubData(cx, target, offset, data)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ unsafe fn CompressedTexImage2D(&self, cx: *mut JSContext, target: u32, level: i32, internal_format: u32,
+ width: i32, height: i32, border: i32, pixels: *mut JSObject) -> Fallible<()> {
+ self.base.CompressedTexImage2D(cx, target, level, internal_format, width, height, border, pixels)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ unsafe fn CompressedTexSubImage2D(&self, cx: *mut JSContext, target: u32, level: i32,
+ xoffset: i32, yoffset: i32, width: i32, height: i32,
+ format: u32, pixels: *mut JSObject) -> Fallible<()> {
+ self.base.CompressedTexSubImage2D(cx, target, level, xoffset, yoffset, width, height, format, pixels)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn CopyTexImage2D(&self, target: u32, level: i32, internal_format: u32,
+ x: i32, y: i32, width: i32, height: i32, border: i32) {
+ self.base.CopyTexImage2D(target, level, internal_format, x, y, width, height, border)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn CopyTexSubImage2D(&self, target: u32, level: i32, xoffset: i32, yoffset: i32,
+ x: i32, y: i32, width: i32, height: i32) {
+ self.base.CopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11
+ fn Clear(&self, mask: u32) {
+ self.base.Clear(mask)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn ClearColor(&self, red: f32, green: f32, blue: f32, alpha: f32) {
+ self.base.ClearColor(red, green, blue, alpha)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn ClearDepth(&self, depth: f32) {
+ self.base.ClearDepth(depth)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn ClearStencil(&self, stencil: i32) {
+ self.base.ClearStencil(stencil)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn ColorMask(&self, r: bool, g: bool, b: bool, a: bool) {
+ self.base.ColorMask(r, g, b, a)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn CullFace(&self, mode: u32) {
+ self.base.CullFace(mode)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn FrontFace(&self, mode: u32) {
+ self.base.FrontFace(mode)
+ }
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn DepthFunc(&self, func: u32) {
+ self.base.DepthFunc(func)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn DepthMask(&self, flag: bool) {
+ self.base.DepthMask(flag)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn DepthRange(&self, near: f32, far: f32) {
+ self.base.DepthRange(near, far)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn Enable(&self, cap: u32) {
+ self.base.Enable(cap)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn Disable(&self, cap: u32) {
+ self.base.Disable(cap)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn CompileShader(&self, shader: Option<&WebGLShader>) {
+ self.base.CompileShader(shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ fn CreateBuffer(&self) -> Option<DomRoot<WebGLBuffer>> {
+ self.base.CreateBuffer()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn CreateFramebuffer(&self) -> Option<DomRoot<WebGLFramebuffer>> {
+ self.base.CreateFramebuffer()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7
+ fn CreateRenderbuffer(&self) -> Option<DomRoot<WebGLRenderbuffer>> {
+ self.base.CreateRenderbuffer()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn CreateTexture(&self) -> Option<DomRoot<WebGLTexture>> {
+ self.base.CreateTexture()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn CreateProgram(&self) -> Option<DomRoot<WebGLProgram>> {
+ self.base.CreateProgram()
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn CreateShader(&self, shader_type: u32) -> Option<DomRoot<WebGLShader>> {
+ self.base.CreateShader(shader_type)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ fn DeleteBuffer(&self, buffer: Option<&WebGLBuffer>) {
+ self.base.DeleteBuffer(buffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn DeleteFramebuffer(&self, framebuffer: Option<&WebGLFramebuffer>) {
+ self.base.DeleteFramebuffer(framebuffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7
+ fn DeleteRenderbuffer(&self, renderbuffer: Option<&WebGLRenderbuffer>) {
+ self.base.DeleteRenderbuffer(renderbuffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn DeleteTexture(&self, texture: Option<&WebGLTexture>) {
+ self.base.DeleteTexture(texture)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn DeleteProgram(&self, program: Option<&WebGLProgram>) {
+ self.base.DeleteProgram(program)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn DeleteShader(&self, shader: Option<&WebGLShader>) {
+ self.base.DeleteShader(shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11
+ fn DrawArrays(&self, mode: u32, first: i32, count: i32) {
+ self.base.DrawArrays(mode, first, count)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.11
+ fn DrawElements(&self, mode: u32, count: i32, type_: u32, offset: i64) {
+ self.base.DrawElements(mode, count, type_, offset)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn EnableVertexAttribArray(&self, attrib_id: u32) {
+ self.base.EnableVertexAttribArray(attrib_id)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn DisableVertexAttribArray(&self, attrib_id: u32) {
+ self.base.DisableVertexAttribArray(attrib_id)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn GetActiveUniform(&self, program: Option<&WebGLProgram>, index: u32) -> Option<DomRoot<WebGLActiveInfo>> {
+ self.base.GetActiveUniform(program, index)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn GetActiveAttrib(&self, program: Option<&WebGLProgram>, index: u32) -> Option<DomRoot<WebGLActiveInfo>> {
+ self.base.GetActiveAttrib(program, index)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn GetAttribLocation(&self, program: Option<&WebGLProgram>, name: DOMString) -> i32 {
+ self.base.GetAttribLocation(program, name)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn GetProgramInfoLog(&self, program: Option<&WebGLProgram>) -> Option<DOMString> {
+ self.base.GetProgramInfoLog(program)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ unsafe fn GetProgramParameter(&self, cx: *mut JSContext, program: Option<&WebGLProgram>, param_id: u32) -> JSVal {
+ self.base.GetProgramParameter(cx, program, param_id)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn GetShaderInfoLog(&self, shader: Option<&WebGLShader>) -> Option<DOMString> {
+ self.base.GetShaderInfoLog(shader)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ unsafe fn GetShaderParameter(&self, cx: *mut JSContext, shader: Option<&WebGLShader>, param_id: u32) -> JSVal {
+ self.base.GetShaderParameter(cx, shader, param_id)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn GetShaderPrecisionFormat(&self,
+ shader_type: u32,
+ precision_type: u32)
+ -> Option<DomRoot<WebGLShaderPrecisionFormat>> {
+ self.base.GetShaderPrecisionFormat(shader_type, precision_type)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn GetUniformLocation(&self,
+ program: Option<&WebGLProgram>,
+ name: DOMString) -> Option<DomRoot<WebGLUniformLocation>> {
+ self.base.GetUniformLocation(program, name)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ unsafe fn GetVertexAttrib(&self, cx: *mut JSContext, index: u32, pname: u32) -> JSVal {
+ self.base.GetVertexAttrib(cx, index, pname)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn GetVertexAttribOffset(&self, index: u32, pname: u32) -> i64 {
+ self.base.GetVertexAttribOffset(index, pname)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn Hint(&self, target: u32, mode: u32) {
+ self.base.Hint(target, mode)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.5
+ fn IsBuffer(&self, buffer: Option<&WebGLBuffer>) -> bool {
+ self.base.IsBuffer(buffer)
+ }
+
+ // TODO: We could write this without IPC, recording the calls to `enable` and `disable`.
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn IsEnabled(&self, cap: u32) -> bool {
+ self.base.IsEnabled(cap)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn IsFramebuffer(&self, frame_buffer: Option<&WebGLFramebuffer>) -> bool {
+ self.base.IsFramebuffer(frame_buffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn IsProgram(&self, program: Option<&WebGLProgram>) -> bool {
+ self.base.IsProgram(program)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7
+ fn IsRenderbuffer(&self, render_buffer: Option<&WebGLRenderbuffer>) -> bool {
+ self.base.IsRenderbuffer(render_buffer)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn IsShader(&self, shader: Option<&WebGLShader>) -> bool {
+ self.base.IsShader(shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn IsTexture(&self, texture: Option<&WebGLTexture>) -> bool {
+ self.base.IsTexture(texture)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn LineWidth(&self, width: f32) {
+ self.base.LineWidth(width)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn PixelStorei(&self, param_name: u32, param_value: i32) {
+ self.base.PixelStorei(param_name, param_value)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn PolygonOffset(&self, factor: f32, units: f32) {
+ self.base.PolygonOffset(factor, units)
+ }
+
+ #[allow(unsafe_code)]
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.12
+ unsafe fn ReadPixels(&self, cx: *mut JSContext, x: i32, y: i32, width: i32, height: i32,
+ format: u32, pixel_type: u32, pixels: *mut JSObject) -> Fallible<()> {
+ self.base.ReadPixels(cx, x, y, width, height, format, pixel_type, pixels)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn SampleCoverage(&self, value: f32, invert: bool) {
+ self.base.SampleCoverage(value, invert)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.4
+ fn Scissor(&self, x: i32, y: i32, width: i32, height: i32) {
+ self.base.Scissor(x, y, width, height)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilFunc(&self, func: u32, ref_: i32, mask: u32) {
+ self.base.StencilFunc(func, ref_, mask)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilFuncSeparate(&self, face: u32, func: u32, ref_: i32, mask: u32) {
+ self.base.StencilFuncSeparate(face, func, ref_, mask)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilMask(&self, mask: u32) {
+ self.base.StencilMask(mask)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilMaskSeparate(&self, face: u32, mask: u32) {
+ self.base.StencilMaskSeparate(face, mask)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilOp(&self, fail: u32, zfail: u32, zpass: u32) {
+ self.base.StencilOp(fail, zfail, zpass)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
+ fn StencilOpSeparate(&self, face: u32, fail: u32, zfail: u32, zpass: u32) {
+ self.base.StencilOpSeparate(face, fail, zfail, zpass)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn LinkProgram(&self, program: Option<&WebGLProgram>) {
+ self.base.LinkProgram(program)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn ShaderSource(&self, shader: Option<&WebGLShader>, source: DOMString) {
+ self.base.ShaderSource(shader, source)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn GetShaderSource(&self, shader: Option<&WebGLShader>) -> Option<DOMString> {
+ self.base.GetShaderSource(shader)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform1f(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ val: f32) {
+ self.base.Uniform1f(uniform, val)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform1i(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ val: i32) {
+ self.base.Uniform1i(uniform, val)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform1iv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform1iv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform1fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform1fv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform2f(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: f32, y: f32) {
+ self.base.Uniform2f(uniform, x, y)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform2fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform2fv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform2i(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: i32, y: i32) {
+ self.base.Uniform2i(uniform, x, y)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform2iv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform2iv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform3f(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: f32, y: f32, z: f32) {
+ self.base.Uniform3f(uniform, x, y, z)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform3fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform3fv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform3i(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: i32, y: i32, z: i32) {
+ self.base.Uniform3i(uniform, x, y, z)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform3iv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform3iv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform4i(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: i32, y: i32, z: i32, w: i32) {
+ self.base.Uniform4i(uniform, x, y, z, w)
+ }
+
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform4iv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform4iv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn Uniform4f(&self,
+ uniform: Option<&WebGLUniformLocation>,
+ x: f32, y: f32, z: f32, w: f32) {
+ self.base.Uniform4f(uniform, x, y, z, w)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn Uniform4fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.Uniform4fv(cx, uniform, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn UniformMatrix2fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ transpose: bool,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.UniformMatrix2fv(cx, uniform, transpose, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn UniformMatrix3fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ transpose: bool,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.UniformMatrix3fv(cx, uniform, transpose, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn UniformMatrix4fv(&self,
+ cx: *mut JSContext,
+ uniform: Option<&WebGLUniformLocation>,
+ transpose: bool,
+ data: *mut JSObject) -> Fallible<()> {
+ self.base.UniformMatrix4fv(cx, uniform, transpose, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn UseProgram(&self, program: Option<&WebGLProgram>) {
+ self.base.UseProgram(program)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.9
+ fn ValidateProgram(&self, program: Option<&WebGLProgram>) {
+ self.base.ValidateProgram(program)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn VertexAttrib1f(&self, indx: u32, x: f32) {
+ self.base.VertexAttrib1f(indx, x)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn VertexAttrib1fv(&self, cx: *mut JSContext, indx: u32, data: *mut JSObject) -> Fallible<()> {
+ self.base.VertexAttrib1fv(cx, indx, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn VertexAttrib2f(&self, indx: u32, x: f32, y: f32) {
+ self.base.VertexAttrib2f(indx, x, y)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn VertexAttrib2fv(&self, cx: *mut JSContext, indx: u32, data: *mut JSObject) -> Fallible<()> {
+ self.base.VertexAttrib2fv(cx, indx, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn VertexAttrib3f(&self, indx: u32, x: f32, y: f32, z: f32) {
+ self.base.VertexAttrib3f(indx, x, y, z)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn VertexAttrib3fv(&self, cx: *mut JSContext, indx: u32, data: *mut JSObject) -> Fallible<()> {
+ self.base.VertexAttrib3fv(cx, indx, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn VertexAttrib4f(&self, indx: u32, x: f32, y: f32, z: f32, w: f32) {
+ self.base.VertexAttrib4f(indx, x, y, z, w)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ #[allow(unsafe_code)]
+ unsafe fn VertexAttrib4fv(&self, cx: *mut JSContext, indx: u32, data: *mut JSObject) -> Fallible<()> {
+ self.base.VertexAttrib4fv(cx, indx, data)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.10
+ fn VertexAttribPointer(&self, attrib_id: u32, size: i32, data_type: u32,
+ normalized: bool, stride: i32, offset: i64) {
+ self.base.VertexAttribPointer(attrib_id, size, data_type, normalized, stride, offset)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.4
+ fn Viewport(&self, x: i32, y: i32, width: i32, height: i32) {
+ self.base.Viewport(x, y, width, height)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ #[allow(unsafe_code)]
+ unsafe fn TexImage2D(&self,
+ cx: *mut JSContext,
+ target: u32,
+ level: i32,
+ internal_format: u32,
+ width: i32,
+ height: i32,
+ border: i32,
+ format: u32,
+ data_type: u32,
+ data_ptr: *mut JSObject) -> Fallible<()> {
+ self.base.TexImage2D(cx, target, level, internal_format, width, height, border, format, data_type, data_ptr)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn TexImage2D_(&self,
+ target: u32,
+ level: i32,
+ internal_format: u32,
+ format: u32,
+ data_type: u32,
+ source: Option<ImageDataOrHTMLImageElementOrHTMLCanvasElementOrHTMLVideoElement>) -> Fallible<()> {
+ self.base.TexImage2D_(target, level, internal_format, format, data_type, source)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn TexImageDOM(&self,
+ target: u32,
+ level: i32,
+ internal_format: u32,
+ width: i32,
+ height: i32,
+ format: u32,
+ data_type: u32,
+ source: &HTMLIFrameElement) -> Fallible<()> {
+ self.base.TexImageDOM(target, level, internal_format, width, height, format, data_type, source)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ #[allow(unsafe_code)]
+ unsafe fn TexSubImage2D(&self,
+ cx: *mut JSContext,
+ target: u32,
+ level: i32,
+ xoffset: i32,
+ yoffset: i32,
+ width: i32,
+ height: i32,
+ format: u32,
+ data_type: u32,
+ data_ptr: *mut JSObject) -> Fallible<()> {
+ self.base.TexSubImage2D(cx, target, level, xoffset, yoffset, width, height, format, data_type, data_ptr)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn TexSubImage2D_(&self,
+ target: u32,
+ level: i32,
+ xoffset: i32,
+ yoffset: i32,
+ format: u32,
+ data_type: u32,
+ source: Option<ImageDataOrHTMLImageElementOrHTMLCanvasElementOrHTMLVideoElement>)
+ -> Fallible<()> {
+ self.base.TexSubImage2D_(target, level, xoffset, yoffset, format, data_type, source)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn TexParameterf(&self, target: u32, name: u32, value: f32) {
+ self.base.TexParameterf(target, name, value)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
+ fn TexParameteri(&self, target: u32, name: u32, value: i32) {
+ self.base.TexParameteri(target, name, value)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn CheckFramebufferStatus(&self, target: u32) -> u32 {
+ self.base.CheckFramebufferStatus(target)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.7
+ fn RenderbufferStorage(&self, target: u32, internal_format: u32,
+ width: i32, height: i32) {
+ self.base.RenderbufferStorage(target, internal_format, width, height)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn FramebufferRenderbuffer(&self, target: u32, attachment: u32,
+ renderbuffertarget: u32,
+ rb: Option<&WebGLRenderbuffer>) {
+ self.base.FramebufferRenderbuffer(target, attachment, renderbuffertarget, rb)
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
+ fn FramebufferTexture2D(&self, target: u32, attachment: u32,
+ textarget: u32, texture: Option<&WebGLTexture>,
+ level: i32) {
+ self.base.FramebufferTexture2D(target, attachment, textarget, texture, level)
+ }
+}
+
+
+impl LayoutCanvasWebGLRenderingContextHelpers for LayoutDom<WebGL2RenderingContext> {
+ #[allow(unsafe_code)]
+ unsafe fn canvas_data_source(&self) -> HTMLCanvasDataSource {
+ HTMLCanvasDataSource::WebGL((*self.unsafe_get()).base.layout_handle())
+ }
+}