aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/canvas/gl_context.rs1
-rw-r--r--components/canvas/webgl_thread.rs27
-rw-r--r--components/canvas_traits/webgl.rs47
-rw-r--r--components/script/dom/bindings/trace.rs4
-rw-r--r--components/script/dom/mod.rs1
-rw-r--r--components/script/dom/webgl2renderingcontext.rs132
-rw-r--r--components/script/dom/webglsync.rs138
-rw-r--r--components/script/dom/webidls/WebGL2RenderingContext.webidl7
-rw-r--r--components/script/dom/webidls/WebGLSync.webidl11
9 files changed, 343 insertions, 25 deletions
diff --git a/components/canvas/gl_context.rs b/components/canvas/gl_context.rs
index 018300129b9..886e6dea39a 100644
--- a/components/canvas/gl_context.rs
+++ b/components/canvas/gl_context.rs
@@ -238,6 +238,7 @@ fn map_limits(limits: RawGLLimits) -> GLLimits {
max_varying_vectors: limits.max_varying_vectors,
max_vertex_texture_image_units: limits.max_vertex_texture_image_units,
max_vertex_uniform_vectors: limits.max_vertex_uniform_vectors,
+ max_client_wait_timeout_webgl: std::time::Duration::new(1, 0),
}
}
diff --git a/components/canvas/webgl_thread.rs b/components/canvas/webgl_thread.rs
index 6fa60d3d7c3..65eeff2a7c1 100644
--- a/components/canvas/webgl_thread.rs
+++ b/components/canvas/webgl_thread.rs
@@ -1360,6 +1360,33 @@ impl WebGLImpl {
}
sender.send(value[0] != 0).unwrap()
},
+ WebGLCommand::FenceSync(ref sender) => {
+ let value = ctx.gl().fence_sync(gl::SYNC_GPU_COMMANDS_COMPLETE, 0);
+ sender
+ .send(unsafe { WebGLSyncId::new(value as u64) })
+ .unwrap();
+ },
+ WebGLCommand::IsSync(sync_id, ref sender) => {
+ let value = ctx.gl().is_sync(sync_id.get() as *const _);
+ sender.send(value).unwrap();
+ },
+ WebGLCommand::ClientWaitSync(sync_id, flags, timeout, ref sender) => {
+ let value =
+ ctx.gl()
+ .client_wait_sync(sync_id.get() as *const _, flags, timeout as u64);
+ sender.send(value).unwrap();
+ },
+ WebGLCommand::WaitSync(sync_id, flags, timeout) => {
+ ctx.gl()
+ .wait_sync(sync_id.get() as *const _, flags, timeout as u64);
+ },
+ WebGLCommand::GetSyncParameter(sync_id, param, ref sender) => {
+ let value = ctx.gl().get_sync_iv(sync_id.get() as *const _, param);
+ sender.send(value[0] as u32).unwrap();
+ },
+ WebGLCommand::DeleteSync(sync_id) => {
+ ctx.gl().delete_sync(sync_id.get() as *const _);
+ },
WebGLCommand::GetParameterBool4(param, ref sender) => {
let mut value = [0; 4];
unsafe {
diff --git a/components/canvas_traits/webgl.rs b/components/canvas_traits/webgl.rs
index ce021b82d6d..0801ee5bd24 100644
--- a/components/canvas_traits/webgl.rs
+++ b/components/canvas_traits/webgl.rs
@@ -9,7 +9,7 @@ use sparkle::gl;
use sparkle::gl::Gl;
use std::borrow::Cow;
use std::fmt;
-use std::num::NonZeroU32;
+use std::num::{NonZeroU32, NonZeroU64};
use std::ops::Deref;
use webrender_api::{DocumentId, ImageKey, PipelineId};
use webvr_traits::WebVRPoseInformation;
@@ -280,6 +280,12 @@ pub enum WebGLCommand {
StencilMaskSeparate(u32, u32),
StencilOp(u32, u32, u32),
StencilOpSeparate(u32, u32, u32, u32),
+ FenceSync(WebGLSender<WebGLSyncId>),
+ IsSync(WebGLSyncId, WebGLSender<bool>),
+ ClientWaitSync(WebGLSyncId, u32, u64, WebGLSender<u32>),
+ WaitSync(WebGLSyncId, u32, i64),
+ GetSyncParameter(WebGLSyncId, u32, WebGLSender<u32>),
+ DeleteSync(WebGLSyncId),
Hint(u32, u32),
LineWidth(f32),
PixelStorei(u32, i32),
@@ -434,20 +440,29 @@ pub enum WebGLCommand {
GetQueryState(WebGLSender<u32>, WebGLQueryId, u32),
}
+macro_rules! nonzero_type {
+ (u32) => {
+ NonZeroU32
+ };
+ (u64) => {
+ NonZeroU64
+ };
+}
+
macro_rules! define_resource_id {
- ($name:ident) => {
+ ($name:ident, $type:tt) => {
#[derive(Clone, Copy, Eq, Hash, PartialEq)]
- pub struct $name(NonZeroU32);
+ pub struct $name(nonzero_type!($type));
impl $name {
#[allow(unsafe_code)]
#[inline]
- pub unsafe fn new(id: u32) -> Self {
- $name(NonZeroU32::new_unchecked(id))
+ pub unsafe fn new(id: $type) -> Self {
+ $name(<nonzero_type!($type)>::new_unchecked(id))
}
#[inline]
- pub fn get(self) -> u32 {
+ pub fn get(self) -> $type {
self.0.get()
}
}
@@ -458,7 +473,7 @@ macro_rules! define_resource_id {
where
D: ::serde::Deserializer<'de>,
{
- let id = u32::deserialize(deserializer)?;
+ let id = <$type>::deserialize(deserializer)?;
if id == 0 {
Err(::serde::de::Error::custom("expected a non-zero value"))
} else {
@@ -498,14 +513,15 @@ macro_rules! define_resource_id {
};
}
-define_resource_id!(WebGLBufferId);
-define_resource_id!(WebGLFramebufferId);
-define_resource_id!(WebGLRenderbufferId);
-define_resource_id!(WebGLTextureId);
-define_resource_id!(WebGLProgramId);
-define_resource_id!(WebGLQueryId);
-define_resource_id!(WebGLShaderId);
-define_resource_id!(WebGLVertexArrayId);
+define_resource_id!(WebGLBufferId, u32);
+define_resource_id!(WebGLFramebufferId, u32);
+define_resource_id!(WebGLRenderbufferId, u32);
+define_resource_id!(WebGLTextureId, u32);
+define_resource_id!(WebGLProgramId, u32);
+define_resource_id!(WebGLQueryId, u32);
+define_resource_id!(WebGLShaderId, u32);
+define_resource_id!(WebGLSyncId, u64);
+define_resource_id!(WebGLVertexArrayId, u32);
#[derive(
Clone, Copy, Debug, Deserialize, Eq, Hash, MallocSizeOf, Ord, PartialEq, PartialOrd, Serialize,
@@ -893,6 +909,7 @@ pub struct GLLimits {
pub max_varying_vectors: u32,
pub max_vertex_texture_image_units: u32,
pub max_vertex_uniform_vectors: u32,
+ pub max_client_wait_timeout_webgl: std::time::Duration,
}
#[derive(Clone, Copy, Debug, Deserialize, MallocSizeOf, Serialize)]
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs
index 8fb272199ab..95bad8b4c4e 100644
--- a/components/script/dom/bindings/trace.rs
+++ b/components/script/dom/bindings/trace.rs
@@ -45,12 +45,13 @@ use canvas_traits::canvas::{
CanvasGradientStop, CanvasId, LinearGradientStyle, RadialGradientStyle,
};
use canvas_traits::canvas::{CompositionOrBlending, LineCapStyle, LineJoinStyle, RepetitionStyle};
+use canvas_traits::webgl::WebGLVertexArrayId;
use canvas_traits::webgl::{ActiveAttribInfo, ActiveUniformInfo, GlType, TexDataType, TexFormat};
use canvas_traits::webgl::{GLFormats, GLLimits, WebGLQueryId};
use canvas_traits::webgl::{WebGLBufferId, WebGLChan, WebGLContextShareMode, WebGLError};
use canvas_traits::webgl::{WebGLFramebufferId, WebGLMsgSender, WebGLPipeline, WebGLProgramId};
use canvas_traits::webgl::{WebGLReceiver, WebGLRenderbufferId, WebGLSLVersion, WebGLSender};
-use canvas_traits::webgl::{WebGLShaderId, WebGLTextureId, WebGLVersion, WebGLVertexArrayId};
+use canvas_traits::webgl::{WebGLShaderId, WebGLSyncId, WebGLTextureId, WebGLVersion};
use crossbeam_channel::{Receiver, Sender};
use cssparser::RGBA;
use devtools_traits::{CSSError, TimelineMarkerType, WorkerId};
@@ -480,6 +481,7 @@ unsafe_no_jsmanaged_fields!(WebGLProgramId);
unsafe_no_jsmanaged_fields!(WebGLQueryId);
unsafe_no_jsmanaged_fields!(WebGLRenderbufferId);
unsafe_no_jsmanaged_fields!(WebGLShaderId);
+unsafe_no_jsmanaged_fields!(WebGLSyncId);
unsafe_no_jsmanaged_fields!(WebGLTextureId);
unsafe_no_jsmanaged_fields!(WebGLVertexArrayId);
unsafe_no_jsmanaged_fields!(WebGLVersion);
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index 3c4b2995b61..d6a6c30b823 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -527,6 +527,7 @@ pub mod webglrenderbuffer;
pub mod webglrenderingcontext;
pub mod webglshader;
pub mod webglshaderprecisionformat;
+pub mod webglsync;
pub mod webgltexture;
pub mod webgluniformlocation;
pub mod webglvertexarrayobjectoes;
diff --git a/components/script/dom/webgl2renderingcontext.rs b/components/script/dom/webgl2renderingcontext.rs
index f33b10f7931..ec959177d32 100644
--- a/components/script/dom/webgl2renderingcontext.rs
+++ b/components/script/dom/webgl2renderingcontext.rs
@@ -28,17 +28,18 @@ use crate::dom::webglrenderingcontext::{
};
use crate::dom::webglshader::WebGLShader;
use crate::dom::webglshaderprecisionformat::WebGLShaderPrecisionFormat;
+use crate::dom::webglsync::WebGLSync;
use crate::dom::webgltexture::WebGLTexture;
use crate::dom::webgluniformlocation::WebGLUniformLocation;
use crate::dom::window::Window;
use crate::script_runtime::JSContext;
-/// https://www.khronos.org/registry/webgl/specs/latest/2.0/webgl.idl
use canvas_traits::webgl::WebGLError::*;
-use canvas_traits::webgl::{GLContextAttributes, WebGLVersion};
+/// https://www.khronos.org/registry/webgl/specs/latest/2.0/webgl.idl
+use canvas_traits::webgl::{webgl_channel, GLContextAttributes, WebGLCommand, WebGLVersion};
use dom_struct::dom_struct;
use euclid::default::Size2D;
use js::jsapi::JSObject;
-use js::jsval::{BooleanValue, JSVal, NullValue, UInt32Value};
+use js::jsval::{BooleanValue, Int32Value, JSVal, NullValue, UInt32Value};
use js::rust::CustomAutoRooterGuard;
use js::typedarray::ArrayBufferView;
use script_layout_interface::HTMLCanvasDataSource;
@@ -125,7 +126,12 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
#[allow(unsafe_code)]
/// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.3
fn GetParameter(&self, cx: JSContext, parameter: u32) -> JSVal {
- self.base.GetParameter(cx, parameter)
+ match parameter {
+ constants::MAX_CLIENT_WAIT_TIMEOUT_WEBGL => {
+ Int32Value(self.base.limits().max_client_wait_timeout_webgl.as_nanos() as i32)
+ },
+ _ => self.base.GetParameter(cx, parameter),
+ }
}
/// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.8
@@ -1197,6 +1203,124 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
},
}
}
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn FenceSync(&self, condition: u32, flags: u32) -> Option<DomRoot<WebGLSync>> {
+ if flags != 0 {
+ self.base.webgl_error(InvalidValue);
+ return None;
+ }
+ if condition != constants::SYNC_GPU_COMMANDS_COMPLETE {
+ self.base.webgl_error(InvalidEnum);
+ return None;
+ }
+
+ Some(WebGLSync::new(&self.base))
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn IsSync(&self, sync: Option<&WebGLSync>) -> bool {
+ match sync {
+ Some(sync) => {
+ if !sync.is_valid() {
+ return false;
+ }
+ handle_potential_webgl_error!(
+ self.base,
+ self.base.validate_ownership(sync),
+ return false
+ );
+ let (sender, receiver) = webgl_channel().unwrap();
+ self.base
+ .send_command(WebGLCommand::IsSync(sync.id(), sender));
+ receiver.recv().unwrap()
+ },
+ None => false,
+ }
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn ClientWaitSync(&self, sync: &WebGLSync, flags: u32, timeout: u64) -> u32 {
+ if !sync.is_valid() {
+ self.base.webgl_error(InvalidOperation);
+ return constants::WAIT_FAILED;
+ }
+ handle_potential_webgl_error!(
+ self.base,
+ self.base.validate_ownership(sync),
+ return constants::WAIT_FAILED
+ );
+ if flags != 0 && flags != constants::SYNC_FLUSH_COMMANDS_BIT {
+ self.base.webgl_error(InvalidValue);
+ return constants::WAIT_FAILED;
+ }
+ if timeout > self.base.limits().max_client_wait_timeout_webgl.as_nanos() as u64 {
+ self.base.webgl_error(InvalidOperation);
+ return constants::WAIT_FAILED;
+ }
+
+ match sync.client_wait_sync(&self.base, flags, timeout) {
+ Some(status) => status,
+ None => constants::WAIT_FAILED,
+ }
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn WaitSync(&self, sync: &WebGLSync, flags: u32, timeout: i64) {
+ if !sync.is_valid() {
+ self.base.webgl_error(InvalidOperation);
+ return;
+ }
+ handle_potential_webgl_error!(self.base, self.base.validate_ownership(sync), return);
+ if flags != 0 {
+ self.base.webgl_error(InvalidValue);
+ return;
+ }
+ if timeout != constants::TIMEOUT_IGNORED {
+ self.base.webgl_error(InvalidValue);
+ return;
+ }
+
+ self.base
+ .send_command(WebGLCommand::WaitSync(sync.id(), flags, timeout));
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn GetSyncParameter(&self, _cx: JSContext, sync: &WebGLSync, pname: u32) -> JSVal {
+ if !sync.is_valid() {
+ self.base.webgl_error(InvalidOperation);
+ return NullValue();
+ }
+ handle_potential_webgl_error!(
+ self.base,
+ self.base.validate_ownership(sync),
+ return NullValue()
+ );
+ match pname {
+ constants::OBJECT_TYPE | constants::SYNC_CONDITION | constants::SYNC_FLAGS => {
+ let (sender, receiver) = webgl_channel().unwrap();
+ self.base
+ .send_command(WebGLCommand::GetSyncParameter(sync.id(), pname, sender));
+ UInt32Value(receiver.recv().unwrap())
+ },
+ constants::SYNC_STATUS => match sync.get_sync_status(pname, &self.base) {
+ Some(status) => UInt32Value(status),
+ None => UInt32Value(constants::UNSIGNALED),
+ },
+ _ => {
+ self.base.webgl_error(InvalidEnum);
+ NullValue()
+ },
+ }
+ }
+
+ /// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+ fn DeleteSync(&self, sync: Option<&WebGLSync>) {
+ if let Some(sync) = sync {
+ handle_potential_webgl_error!(self.base, self.base.validate_ownership(sync), return);
+ sync.delete(false);
+ }
+ }
}
impl LayoutCanvasWebGLRenderingContextHelpers for LayoutDom<WebGL2RenderingContext> {
diff --git a/components/script/dom/webglsync.rs b/components/script/dom/webglsync.rs
new file mode 100644
index 00000000000..7f1fec355f9
--- /dev/null
+++ b/components/script/dom/webglsync.rs
@@ -0,0 +1,138 @@
+/* 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 https://mozilla.org/MPL/2.0/. */
+
+use crate::dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding::WebGL2RenderingContextConstants as constants;
+use crate::dom::bindings::codegen::Bindings::WebGLSyncBinding;
+use crate::dom::bindings::inheritance::Castable;
+use crate::dom::bindings::refcounted::Trusted;
+use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
+use crate::dom::bindings::root::DomRoot;
+use crate::dom::webglobject::WebGLObject;
+use crate::dom::webglrenderingcontext::WebGLRenderingContext;
+use crate::task_source::TaskSource;
+use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLSyncId};
+use dom_struct::dom_struct;
+use std::cell::Cell;
+
+#[dom_struct]
+pub struct WebGLSync {
+ webgl_object: WebGLObject,
+ sync_id: WebGLSyncId,
+ marked_for_deletion: Cell<bool>,
+ client_wait_status: Cell<Option<u32>>,
+ sync_status: Cell<Option<u32>>,
+}
+
+impl WebGLSync {
+ fn new_inherited(context: &WebGLRenderingContext, sync_id: WebGLSyncId) -> Self {
+ Self {
+ webgl_object: WebGLObject::new_inherited(context),
+ sync_id,
+ marked_for_deletion: Cell::new(false),
+ client_wait_status: Cell::new(None),
+ sync_status: Cell::new(None),
+ }
+ }
+
+ pub fn new(context: &WebGLRenderingContext) -> DomRoot<Self> {
+ let (sender, receiver) = webgl_channel().unwrap();
+ context.send_command(WebGLCommand::FenceSync(sender));
+ let sync_id = receiver.recv().unwrap();
+
+ reflect_dom_object(
+ Box::new(WebGLSync::new_inherited(context, sync_id)),
+ &*context.global(),
+ WebGLSyncBinding::Wrap,
+ )
+ }
+}
+
+impl WebGLSync {
+ pub fn client_wait_sync(
+ &self,
+ context: &WebGLRenderingContext,
+ flags: u32,
+ timeout: u64,
+ ) -> Option<u32> {
+ match self.client_wait_status.get() {
+ Some(constants::TIMEOUT_EXPIRED) | Some(constants::WAIT_FAILED) | None => {
+ let global = self.global();
+ let this = Trusted::new(self);
+ let context = Trusted::new(context);
+ let task = task!(request_client_wait_status: move || {
+ let this = this.root();
+ let context = context.root();
+ let (sender, receiver) = webgl_channel().unwrap();
+ context.send_command(WebGLCommand::ClientWaitSync(
+ this.sync_id,
+ flags,
+ timeout,
+ sender,
+ ));
+ this.client_wait_status.set(Some(receiver.recv().unwrap()));
+ });
+ global
+ .as_window()
+ .task_manager()
+ .dom_manipulation_task_source()
+ .queue(task, global.upcast())
+ .unwrap();
+ },
+ _ => {},
+ }
+ self.client_wait_status.get()
+ }
+
+ pub fn delete(&self, fallible: bool) {
+ if self.is_valid() {
+ self.marked_for_deletion.set(true);
+ let context = self.upcast::<WebGLObject>().context();
+ let cmd = WebGLCommand::DeleteSync(self.sync_id);
+ if fallible {
+ context.send_command_ignored(cmd);
+ } else {
+ context.send_command(cmd);
+ }
+ }
+ }
+
+ pub fn get_sync_status(&self, pname: u32, context: &WebGLRenderingContext) -> Option<u32> {
+ match self.sync_status.get() {
+ Some(constants::UNSIGNALED) | None => {
+ let global = self.global();
+ let this = Trusted::new(self);
+ let context = Trusted::new(context);
+ let task = task!(request_sync_status: move || {
+ let this = this.root();
+ let context = context.root();
+ let (sender, receiver) = webgl_channel().unwrap();
+ context.send_command(WebGLCommand::GetSyncParameter(this.sync_id, pname, sender));
+ this.sync_status.set(Some(receiver.recv().unwrap()));
+ });
+ global
+ .as_window()
+ .task_manager()
+ .dom_manipulation_task_source()
+ .queue(task, global.upcast())
+ .unwrap();
+ },
+ _ => {},
+ }
+ self.sync_status.get()
+ }
+
+ pub fn is_valid(&self) -> bool {
+ !self.marked_for_deletion.get()
+ }
+
+ pub fn id(&self) -> WebGLSyncId {
+ self.sync_id
+ }
+}
+
+impl Drop for WebGLSync {
+ fn drop(&mut self) {
+ self.delete(true);
+ }
+}
diff --git a/components/script/dom/webidls/WebGL2RenderingContext.webidl b/components/script/dom/webidls/WebGL2RenderingContext.webidl
index 13e78c72ac1..d46f3099f60 100644
--- a/components/script/dom/webidls/WebGL2RenderingContext.webidl
+++ b/components/script/dom/webidls/WebGL2RenderingContext.webidl
@@ -15,9 +15,6 @@ typedef unsigned long long GLuint64;
// interface WebGLSampler : WebGLObject {
// };
-// interface WebGLSync : WebGLObject {
-// };
-
// interface WebGLTransformFeedback : WebGLObject {
// };
@@ -542,12 +539,12 @@ interface mixin WebGL2RenderingContextBase
any getSamplerParameter(WebGLSampler sampler, GLenum pname);*/
/* Sync objects */
- /*WebGLSync? fenceSync(GLenum condition, GLbitfield flags);
+ WebGLSync? fenceSync(GLenum condition, GLbitfield flags);
[WebGLHandlesContextLoss] GLboolean isSync(WebGLSync? sync);
void deleteSync(WebGLSync? sync);
GLenum clientWaitSync(WebGLSync sync, GLbitfield flags, GLuint64 timeout);
void waitSync(WebGLSync sync, GLbitfield flags, GLint64 timeout);
- any getSyncParameter(WebGLSync sync, GLenum pname);*/
+ any getSyncParameter(WebGLSync sync, GLenum pname);
/* Transform Feedback */
/*WebGLTransformFeedback? createTransformFeedback();
diff --git a/components/script/dom/webidls/WebGLSync.webidl b/components/script/dom/webidls/WebGLSync.webidl
new file mode 100644
index 00000000000..3b251b8cf87
--- /dev/null
+++ b/components/script/dom/webidls/WebGLSync.webidl
@@ -0,0 +1,11 @@
+/* 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 https://mozilla.org/MPL/2.0/. */
+//
+// WebGL IDL definitions scraped from the Khronos specification:
+// https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.14
+//
+
+[Pref="dom.webgl2.enabled"]
+interface WebGLSync : WebGLObject {
+};