mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Replaced failible boolean with an enum
This commit is contained in:
parent
60e75314fe
commit
9c343fcc96
15 changed files with 106 additions and 111 deletions
|
@ -7,7 +7,7 @@ use crate::dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding::WebG
|
||||||
use crate::dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLRenderingContextConstants as constants;
|
use crate::dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLRenderingContextConstants as constants;
|
||||||
use crate::dom::bindings::root::{Dom, MutNullableDom};
|
use crate::dom::bindings::root::{Dom, MutNullableDom};
|
||||||
use crate::dom::webglbuffer::WebGLBuffer;
|
use crate::dom::webglbuffer::WebGLBuffer;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{
|
use canvas_traits::webgl::{
|
||||||
ActiveAttribInfo, WebGLCommand, WebGLError, WebGLResult, WebGLVersion, WebGLVertexArrayId,
|
ActiveAttribInfo, WebGLCommand, WebGLError, WebGLResult, WebGLVersion, WebGLVertexArrayId,
|
||||||
};
|
};
|
||||||
|
@ -45,26 +45,25 @@ impl VertexArrayObject {
|
||||||
self.is_deleted.get()
|
self.is_deleted.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
assert!(self.id.is_some());
|
assert!(self.id.is_some());
|
||||||
if self.is_deleted.get() {
|
if self.is_deleted.get() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.is_deleted.set(true);
|
self.is_deleted.set(true);
|
||||||
let cmd = WebGLCommand::DeleteVertexArray(self.id.unwrap());
|
let cmd = WebGLCommand::DeleteVertexArray(self.id.unwrap());
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
self.context.send_command_ignored(cmd);
|
Operation::Fallible => self.context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => self.context.send_command(cmd),
|
||||||
self.context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for attrib_data in &**self.vertex_attribs.borrow() {
|
for attrib_data in &**self.vertex_attribs.borrow() {
|
||||||
if let Some(buffer) = attrib_data.buffer() {
|
if let Some(buffer) = attrib_data.buffer() {
|
||||||
buffer.decrement_attached_counter(fallible);
|
buffer.decrement_attached_counter(operation_fallibility);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if let Some(buffer) = self.element_array_buffer.get() {
|
if let Some(buffer) = self.element_array_buffer.get() {
|
||||||
buffer.decrement_attached_counter(fallible);
|
buffer.decrement_attached_counter(operation_fallibility);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -156,7 +155,7 @@ impl VertexArrayObject {
|
||||||
offset as u32,
|
offset as u32,
|
||||||
));
|
));
|
||||||
if let Some(old) = data.buffer() {
|
if let Some(old) = data.buffer() {
|
||||||
old.decrement_attached_counter(false);
|
old.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
|
|
||||||
*data = VertexAttribData {
|
*data = VertexAttribData {
|
||||||
|
@ -188,7 +187,7 @@ impl VertexArrayObject {
|
||||||
if b.id() != buffer.id() {
|
if b.id() != buffer.id() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
b.decrement_attached_counter(false);
|
b.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
attrib.buffer = None;
|
attrib.buffer = None;
|
||||||
}
|
}
|
||||||
|
@ -197,7 +196,7 @@ impl VertexArrayObject {
|
||||||
.get()
|
.get()
|
||||||
.map_or(false, |b| buffer == &*b)
|
.map_or(false, |b| buffer == &*b)
|
||||||
{
|
{
|
||||||
buffer.decrement_attached_counter(false);
|
buffer.decrement_attached_counter(Operation::Infallible);
|
||||||
self.element_array_buffer.set(None);
|
self.element_array_buffer.set(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -256,7 +255,7 @@ impl VertexArrayObject {
|
||||||
impl Drop for VertexArrayObject {
|
impl Drop for VertexArrayObject {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
if self.id.is_some() {
|
if self.id.is_some() {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ use crate::dom::webglprogram::WebGLProgram;
|
||||||
use crate::dom::webglquery::WebGLQuery;
|
use crate::dom::webglquery::WebGLQuery;
|
||||||
use crate::dom::webglrenderbuffer::WebGLRenderbuffer;
|
use crate::dom::webglrenderbuffer::WebGLRenderbuffer;
|
||||||
use crate::dom::webglrenderingcontext::{
|
use crate::dom::webglrenderingcontext::{
|
||||||
uniform_get, uniform_typed, LayoutCanvasWebGLRenderingContextHelpers, VertexAttrib,
|
uniform_get, uniform_typed, LayoutCanvasWebGLRenderingContextHelpers, Operation, VertexAttrib,
|
||||||
WebGLRenderingContext,
|
WebGLRenderingContext,
|
||||||
};
|
};
|
||||||
use crate::dom::webglsampler::{WebGLSampler, WebGLSamplerValue};
|
use crate::dom::webglsampler::{WebGLSampler, WebGLSamplerValue};
|
||||||
|
@ -339,7 +339,7 @@ impl WebGL2RenderingContext {
|
||||||
|
|
||||||
fn unbind_from(&self, slot: &MutNullableDom<WebGLBuffer>, buffer: &WebGLBuffer) {
|
fn unbind_from(&self, slot: &MutNullableDom<WebGLBuffer>, buffer: &WebGLBuffer) {
|
||||||
if slot.get().map_or(false, |b| buffer == &*b) {
|
if slot.get().map_or(false, |b| buffer == &*b) {
|
||||||
buffer.decrement_attached_counter(false);
|
buffer.decrement_attached_counter(Operation::Infallible);
|
||||||
slot.set(None);
|
slot.set(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1633,7 +1633,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
self.unbind_from(&binding.buffer, &buffer);
|
self.unbind_from(&binding.buffer, &buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
buffer.mark_for_deletion(false);
|
buffer.mark_for_deletion(Operation::Infallible);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
|
/// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
|
||||||
|
@ -3054,7 +3054,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query.delete(false);
|
query.delete(Operation::Infallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3080,7 +3080,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
slot.set(None);
|
slot.set(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sampler.delete(false);
|
sampler.delete(Operation::Infallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3311,7 +3311,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
fn DeleteSync(&self, sync: Option<&WebGLSync>) {
|
fn DeleteSync(&self, sync: Option<&WebGLSync>) {
|
||||||
if let Some(sync) = sync {
|
if let Some(sync) = sync {
|
||||||
handle_potential_webgl_error!(self.base, self.base.validate_ownership(sync), return);
|
handle_potential_webgl_error!(self.base, self.base.validate_ownership(sync), return);
|
||||||
sync.delete(false);
|
sync.delete(Operation::Infallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3390,7 +3390,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
self.base.webgl_error(InvalidOperation);
|
self.base.webgl_error(InvalidOperation);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
tf.delete(false);
|
tf.delete(Operation::Infallible);
|
||||||
self.current_transform_feedback.set(None);
|
self.current_transform_feedback.set(None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3624,7 +3624,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
|
|
||||||
for slot in &[&generic_slot, &indexed_binding.buffer] {
|
for slot in &[&generic_slot, &indexed_binding.buffer] {
|
||||||
if let Some(old) = slot.get() {
|
if let Some(old) = slot.get() {
|
||||||
old.decrement_attached_counter(false);
|
old.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
slot.set(buffer);
|
slot.set(buffer);
|
||||||
}
|
}
|
||||||
|
@ -3702,7 +3702,7 @@ impl WebGL2RenderingContextMethods for WebGL2RenderingContext {
|
||||||
|
|
||||||
for slot in &[&generic_slot, &indexed_binding.buffer] {
|
for slot in &[&generic_slot, &indexed_binding.buffer] {
|
||||||
if let Some(old) = slot.get() {
|
if let Some(old) = slot.get() {
|
||||||
old.decrement_attached_counter(false);
|
old.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
slot.set(buffer);
|
slot.set(buffer);
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ use crate::dom::bindings::inheritance::Castable;
|
||||||
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::DomRoot;
|
use crate::dom::bindings::root::DomRoot;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::webgl_channel;
|
use canvas_traits::webgl::webgl_channel;
|
||||||
use canvas_traits::webgl::{WebGLBufferId, WebGLCommand, WebGLError, WebGLResult};
|
use canvas_traits::webgl::{WebGLBufferId, WebGLCommand, WebGLError, WebGLResult};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
@ -97,24 +97,23 @@ impl WebGLBuffer {
|
||||||
self.capacity.get()
|
self.capacity.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn mark_for_deletion(&self, fallible: bool) {
|
pub fn mark_for_deletion(&self, operation_fallibility: Operation) {
|
||||||
if self.marked_for_deletion.get() {
|
if self.marked_for_deletion.get() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
if self.is_deleted() {
|
if self.is_deleted() {
|
||||||
self.delete(fallible);
|
self.delete(operation_fallibility);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn delete(&self, fallible: bool) {
|
fn delete(&self, operation_fallibility: Operation) {
|
||||||
assert!(self.is_deleted());
|
assert!(self.is_deleted());
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let cmd = WebGLCommand::DeleteBuffer(self.id);
|
let cmd = WebGLCommand::DeleteBuffer(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +163,7 @@ impl WebGLBuffer {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn decrement_attached_counter(&self, fallible: bool) {
|
pub fn decrement_attached_counter(&self, operation_fallibility: Operation) {
|
||||||
self.attached_counter.set(
|
self.attached_counter.set(
|
||||||
self.attached_counter
|
self.attached_counter
|
||||||
.get()
|
.get()
|
||||||
|
@ -172,7 +171,7 @@ impl WebGLBuffer {
|
||||||
.expect("refcount underflowed"),
|
.expect("refcount underflowed"),
|
||||||
);
|
);
|
||||||
if self.is_deleted() {
|
if self.is_deleted() {
|
||||||
self.delete(fallible);
|
self.delete(operation_fallibility);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -183,6 +182,6 @@ impl WebGLBuffer {
|
||||||
|
|
||||||
impl Drop for WebGLBuffer {
|
impl Drop for WebGLBuffer {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.mark_for_deletion(true);
|
self.mark_for_deletion(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::{Dom, DomRoot, MutNullableDom};
|
use crate::dom::bindings::root::{Dom, DomRoot, MutNullableDom};
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderbuffer::WebGLRenderbuffer;
|
use crate::dom::webglrenderbuffer::WebGLRenderbuffer;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use crate::dom::webgltexture::WebGLTexture;
|
use crate::dom::webgltexture::WebGLTexture;
|
||||||
use crate::dom::xrsession::XRSession;
|
use crate::dom::xrsession::XRSession;
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLError, WebGLResult, WebGLVersion};
|
use canvas_traits::webgl::{webgl_channel, WebGLError, WebGLResult, WebGLVersion};
|
||||||
|
@ -207,15 +207,14 @@ impl WebGLFramebuffer {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if !self.is_deleted.get() {
|
if !self.is_deleted.get() {
|
||||||
self.is_deleted.set(true);
|
self.is_deleted.set(true);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let cmd = WebGLCommand::DeleteFramebuffer(self.id);
|
let cmd = WebGLCommand::DeleteFramebuffer(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -977,7 +976,7 @@ impl WebGLFramebuffer {
|
||||||
|
|
||||||
impl Drop for WebGLFramebuffer {
|
impl Drop for WebGLFramebuffer {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
let _ = self.delete(true);
|
let _ = self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
||||||
use crate::dom::bindings::str::DOMString;
|
use crate::dom::bindings::str::DOMString;
|
||||||
use crate::dom::webglactiveinfo::WebGLActiveInfo;
|
use crate::dom::webglactiveinfo::WebGLActiveInfo;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use crate::dom::webglshader::WebGLShader;
|
use crate::dom::webglshader::WebGLShader;
|
||||||
use crate::dom::webgluniformlocation::WebGLUniformLocation;
|
use crate::dom::webgluniformlocation::WebGLUniformLocation;
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLProgramId, WebGLResult};
|
use canvas_traits::webgl::{webgl_channel, WebGLProgramId, WebGLResult};
|
||||||
|
@ -84,17 +84,16 @@ impl WebGLProgram {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// glDeleteProgram
|
/// glDeleteProgram
|
||||||
pub fn mark_for_deletion(&self, fallible: bool) {
|
pub fn mark_for_deletion(&self, operation_fallibility: Operation) {
|
||||||
if self.marked_for_deletion.get() {
|
if self.marked_for_deletion.get() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
let cmd = WebGLCommand::DeleteProgram(self.id);
|
let cmd = WebGLCommand::DeleteProgram(self.id);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
if self.is_deleted() {
|
if self.is_deleted() {
|
||||||
self.detach_shaders();
|
self.detach_shaders();
|
||||||
|
@ -639,7 +638,7 @@ impl WebGLProgram {
|
||||||
impl Drop for WebGLProgram {
|
impl Drop for WebGLProgram {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.in_use(false);
|
self.in_use(false);
|
||||||
self.mark_for_deletion(true);
|
self.mark_for_deletion(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::dom::bindings::refcounted::Trusted;
|
||||||
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::DomRoot;
|
use crate::dom::bindings::root::DomRoot;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use crate::task_source::TaskSource;
|
use crate::task_source::TaskSource;
|
||||||
use canvas_traits::webgl::WebGLError::*;
|
use canvas_traits::webgl::WebGLError::*;
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLQueryId};
|
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLQueryId};
|
||||||
|
@ -96,16 +96,15 @@ impl WebGLQuery {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if !self.marked_for_deletion.get() {
|
if !self.marked_for_deletion.get() {
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
|
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let command = WebGLCommand::DeleteQuery(self.gl_id);
|
let command = WebGLCommand::DeleteQuery(self.gl_id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(command);
|
Operation::Fallible => context.send_command_ignored(command),
|
||||||
} else {
|
Operation::Infallible => context.send_command(command),
|
||||||
context.send_command(command);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,6 +186,6 @@ impl WebGLQuery {
|
||||||
|
|
||||||
impl Drop for WebGLQuery {
|
impl Drop for WebGLQuery {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
||||||
use crate::dom::webglframebuffer::WebGLFramebuffer;
|
use crate::dom::webglframebuffer::WebGLFramebuffer;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{
|
use canvas_traits::webgl::{
|
||||||
webgl_channel, GlType, InternalFormatIntVec, WebGLCommand, WebGLError, WebGLRenderbufferId,
|
webgl_channel, GlType, InternalFormatIntVec, WebGLCommand, WebGLError, WebGLRenderbufferId,
|
||||||
WebGLResult, WebGLVersion,
|
WebGLResult, WebGLVersion,
|
||||||
|
@ -90,7 +90,7 @@ impl WebGLRenderbuffer {
|
||||||
.send_command(WebGLCommand::BindRenderbuffer(target, Some(self.id)));
|
.send_command(WebGLCommand::BindRenderbuffer(target, Some(self.id)));
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if !self.is_deleted.get() {
|
if !self.is_deleted.get() {
|
||||||
self.is_deleted.set(true);
|
self.is_deleted.set(true);
|
||||||
|
|
||||||
|
@ -113,10 +113,9 @@ impl WebGLRenderbuffer {
|
||||||
}
|
}
|
||||||
|
|
||||||
let cmd = WebGLCommand::DeleteRenderbuffer(self.id);
|
let cmd = WebGLCommand::DeleteRenderbuffer(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -277,6 +276,6 @@ impl WebGLRenderbuffer {
|
||||||
|
|
||||||
impl Drop for WebGLRenderbuffer {
|
impl Drop for WebGLRenderbuffer {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -155,6 +155,12 @@ pub enum VertexAttrib {
|
||||||
Uint(u32, u32, u32, u32),
|
Uint(u32, u32, u32, u32),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug)]
|
||||||
|
pub enum Operation {
|
||||||
|
Fallible,
|
||||||
|
Infallible,
|
||||||
|
}
|
||||||
|
|
||||||
#[dom_struct]
|
#[dom_struct]
|
||||||
pub struct WebGLRenderingContext {
|
pub struct WebGLRenderingContext {
|
||||||
reflector_: Reflector,
|
reflector_: Reflector,
|
||||||
|
@ -1142,7 +1148,7 @@ impl WebGLRenderingContext {
|
||||||
self.current_vao.set(None);
|
self.current_vao.set(None);
|
||||||
self.send_command(WebGLCommand::BindVertexArray(None));
|
self.send_command(WebGLCommand::BindVertexArray(None));
|
||||||
}
|
}
|
||||||
vao.delete(false);
|
vao.delete(Operation::Infallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1160,7 +1166,7 @@ impl WebGLRenderingContext {
|
||||||
self.current_vao_webgl2.set(None);
|
self.current_vao_webgl2.set(None);
|
||||||
self.send_command(WebGLCommand::BindVertexArray(None));
|
self.send_command(WebGLCommand::BindVertexArray(None));
|
||||||
}
|
}
|
||||||
vao.delete(false);
|
vao.delete(Operation::Infallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1335,7 +1341,7 @@ impl WebGLRenderingContext {
|
||||||
|
|
||||||
self.send_command(WebGLCommand::BindBuffer(target, buffer.map(|b| b.id())));
|
self.send_command(WebGLCommand::BindBuffer(target, buffer.map(|b| b.id())));
|
||||||
if let Some(old) = slot.get() {
|
if let Some(old) = slot.get() {
|
||||||
old.decrement_attached_counter(false);
|
old.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
|
|
||||||
slot.set(buffer);
|
slot.set(buffer);
|
||||||
|
@ -2583,9 +2589,9 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
.map_or(false, |b| buffer == &*b)
|
.map_or(false, |b| buffer == &*b)
|
||||||
{
|
{
|
||||||
self.bound_buffer_array.set(None);
|
self.bound_buffer_array.set(None);
|
||||||
buffer.decrement_attached_counter(false);
|
buffer.decrement_attached_counter(Operation::Infallible);
|
||||||
}
|
}
|
||||||
buffer.mark_for_deletion(false);
|
buffer.mark_for_deletion(Operation::Infallible);
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
|
// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.14.6
|
||||||
|
@ -2605,7 +2611,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
WebGLFramebufferBindingRequest::Default
|
WebGLFramebufferBindingRequest::Default
|
||||||
))
|
))
|
||||||
);
|
);
|
||||||
framebuffer.delete(false)
|
framebuffer.delete(Operation::Infallible)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2622,7 +2628,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
None
|
None
|
||||||
))
|
))
|
||||||
);
|
);
|
||||||
renderbuffer.delete(false)
|
renderbuffer.delete(Operation::Infallible)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2657,7 +2663,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
texture.delete(false)
|
texture.delete(Operation::Infallible)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2665,7 +2671,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
fn DeleteProgram(&self, program: Option<&WebGLProgram>) {
|
fn DeleteProgram(&self, program: Option<&WebGLProgram>) {
|
||||||
if let Some(program) = program {
|
if let Some(program) = program {
|
||||||
handle_potential_webgl_error!(self, self.validate_ownership(program), return);
|
handle_potential_webgl_error!(self, self.validate_ownership(program), return);
|
||||||
program.mark_for_deletion(false)
|
program.mark_for_deletion(Operation::Infallible)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2673,7 +2679,7 @@ impl WebGLRenderingContextMethods for WebGLRenderingContext {
|
||||||
fn DeleteShader(&self, shader: Option<&WebGLShader>) {
|
fn DeleteShader(&self, shader: Option<&WebGLShader>) {
|
||||||
if let Some(shader) = shader {
|
if let Some(shader) = shader {
|
||||||
handle_potential_webgl_error!(self, self.validate_ownership(shader), return);
|
handle_potential_webgl_error!(self, self.validate_ownership(shader), return);
|
||||||
shader.mark_for_deletion(false)
|
shader.mark_for_deletion(Operation::Infallible)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ use crate::dom::bindings::inheritance::Castable;
|
||||||
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::DomRoot;
|
use crate::dom::bindings::root::DomRoot;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::WebGLError::*;
|
use canvas_traits::webgl::WebGLError::*;
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLSamplerId};
|
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLSamplerId};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
@ -90,16 +90,15 @@ impl WebGLSampler {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if !self.marked_for_deletion.get() {
|
if !self.marked_for_deletion.get() {
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
|
|
||||||
let command = WebGLCommand::DeleteSampler(self.gl_id);
|
let command = WebGLCommand::DeleteSampler(self.gl_id);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(command);
|
Operation::Fallible => context.send_command_ignored(command),
|
||||||
} else {
|
Operation::Infallible => context.send_command(command),
|
||||||
context.send_command(command);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -180,6 +179,6 @@ impl WebGLSampler {
|
||||||
|
|
||||||
impl Drop for WebGLSampler {
|
impl Drop for WebGLSampler {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ use crate::dom::webgl_extensions::ext::extshadertexturelod::EXTShaderTextureLod;
|
||||||
use crate::dom::webgl_extensions::ext::oesstandardderivatives::OESStandardDerivatives;
|
use crate::dom::webgl_extensions::ext::oesstandardderivatives::OESStandardDerivatives;
|
||||||
use crate::dom::webgl_extensions::WebGLExtensions;
|
use crate::dom::webgl_extensions::WebGLExtensions;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{webgl_channel, GlType, WebGLVersion};
|
use canvas_traits::webgl::{webgl_channel, GlType, WebGLVersion};
|
||||||
use canvas_traits::webgl::{GLLimits, WebGLCommand, WebGLError};
|
use canvas_traits::webgl::{GLLimits, WebGLCommand, WebGLError};
|
||||||
use canvas_traits::webgl::{WebGLResult, WebGLSLVersion, WebGLShaderId};
|
use canvas_traits::webgl::{WebGLResult, WebGLSLVersion, WebGLShaderId};
|
||||||
|
@ -344,15 +344,14 @@ impl WebGLShader {
|
||||||
/// Mark this shader as deleted (if it wasn't previously)
|
/// Mark this shader as deleted (if it wasn't previously)
|
||||||
/// and delete it as if calling glDeleteShader.
|
/// and delete it as if calling glDeleteShader.
|
||||||
/// Currently does not check if shader is attached
|
/// Currently does not check if shader is attached
|
||||||
pub fn mark_for_deletion(&self, fallible: bool) {
|
pub fn mark_for_deletion(&self, operation_fallibility: Operation) {
|
||||||
if !self.marked_for_deletion.get() {
|
if !self.marked_for_deletion.get() {
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let cmd = WebGLCommand::DeleteShader(self.id);
|
let cmd = WebGLCommand::DeleteShader(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -400,6 +399,6 @@ impl WebGLShader {
|
||||||
|
|
||||||
impl Drop for WebGLShader {
|
impl Drop for WebGLShader {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.mark_for_deletion(true);
|
self.mark_for_deletion(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::dom::bindings::refcounted::Trusted;
|
||||||
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::DomRoot;
|
use crate::dom::bindings::root::DomRoot;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use crate::task_source::TaskSource;
|
use crate::task_source::TaskSource;
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLSyncId};
|
use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLSyncId};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
@ -82,15 +82,14 @@ impl WebGLSync {
|
||||||
self.client_wait_status.get()
|
self.client_wait_status.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if self.is_valid() {
|
if self.is_valid() {
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let cmd = WebGLCommand::DeleteSync(self.sync_id);
|
let cmd = WebGLCommand::DeleteSync(self.sync_id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -131,6 +130,6 @@ impl WebGLSync {
|
||||||
|
|
||||||
impl Drop for WebGLSync {
|
impl Drop for WebGLSync {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
||||||
use crate::dom::webgl_validations::types::TexImageTarget;
|
use crate::dom::webgl_validations::types::TexImageTarget;
|
||||||
use crate::dom::webglframebuffer::WebGLFramebuffer;
|
use crate::dom::webglframebuffer::WebGLFramebuffer;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{webgl_channel, TexDataType, TexFormat, WebGLResult, WebGLTextureId};
|
use canvas_traits::webgl::{webgl_channel, TexDataType, TexFormat, WebGLResult, WebGLTextureId};
|
||||||
use canvas_traits::webgl::{DOMToTextureCommand, WebGLCommand, WebGLError};
|
use canvas_traits::webgl::{DOMToTextureCommand, WebGLCommand, WebGLError};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
@ -183,7 +183,7 @@ impl WebGLTexture {
|
||||||
self.populate_mip_chain(self.base_mipmap_level, last_level)
|
self.populate_mip_chain(self.base_mipmap_level, last_level)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if !self.is_deleted.get() {
|
if !self.is_deleted.get() {
|
||||||
self.is_deleted.set(true);
|
self.is_deleted.set(true);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
|
@ -210,10 +210,9 @@ impl WebGLTexture {
|
||||||
}
|
}
|
||||||
|
|
||||||
let cmd = WebGLCommand::DeleteTexture(self.id);
|
let cmd = WebGLCommand::DeleteTexture(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -420,7 +419,7 @@ impl WebGLTexture {
|
||||||
|
|
||||||
impl Drop for WebGLTexture {
|
impl Drop for WebGLTexture {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ use crate::dom::bindings::inheritance::Castable;
|
||||||
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
use crate::dom::bindings::root::DomRoot;
|
use crate::dom::bindings::root::DomRoot;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{webgl_channel, WebGLCommand};
|
use canvas_traits::webgl::{webgl_channel, WebGLCommand};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
|
@ -98,15 +98,14 @@ impl WebGLTransformFeedback {
|
||||||
self.is_paused.get()
|
self.is_paused.get()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
if self.is_valid() && self.id() != 0 {
|
if self.is_valid() && self.id() != 0 {
|
||||||
self.marked_for_deletion.set(true);
|
self.marked_for_deletion.set(true);
|
||||||
let context = self.upcast::<WebGLObject>().context();
|
let context = self.upcast::<WebGLObject>().context();
|
||||||
let cmd = WebGLCommand::DeleteTransformFeedback(self.id);
|
let cmd = WebGLCommand::DeleteTransformFeedback(self.id);
|
||||||
if fallible {
|
match operation_fallibility {
|
||||||
context.send_command_ignored(cmd);
|
Operation::Fallible => context.send_command_ignored(cmd),
|
||||||
} else {
|
Operation::Infallible => context.send_command(cmd),
|
||||||
context.send_command(cmd);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -126,6 +125,6 @@ impl WebGLTransformFeedback {
|
||||||
|
|
||||||
impl Drop for WebGLTransformFeedback {
|
impl Drop for WebGLTransformFeedback {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.delete(true);
|
self.delete(Operation::Fallible);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
||||||
use crate::dom::vertexarrayobject::{VertexArrayObject, VertexAttribData};
|
use crate::dom::vertexarrayobject::{VertexArrayObject, VertexAttribData};
|
||||||
use crate::dom::webglbuffer::WebGLBuffer;
|
use crate::dom::webglbuffer::WebGLBuffer;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{ActiveAttribInfo, WebGLResult, WebGLVertexArrayId};
|
use canvas_traits::webgl::{ActiveAttribInfo, WebGLResult, WebGLVertexArrayId};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@ impl WebGLVertexArrayObject {
|
||||||
self.array_object.is_deleted()
|
self.array_object.is_deleted()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
self.array_object.delete(fallible);
|
self.array_object.delete(operation_fallibility);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn ever_bound(&self) -> bool {
|
pub fn ever_bound(&self) -> bool {
|
||||||
|
|
|
@ -8,7 +8,7 @@ use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
||||||
use crate::dom::vertexarrayobject::{VertexArrayObject, VertexAttribData};
|
use crate::dom::vertexarrayobject::{VertexArrayObject, VertexAttribData};
|
||||||
use crate::dom::webglbuffer::WebGLBuffer;
|
use crate::dom::webglbuffer::WebGLBuffer;
|
||||||
use crate::dom::webglobject::WebGLObject;
|
use crate::dom::webglobject::WebGLObject;
|
||||||
use crate::dom::webglrenderingcontext::WebGLRenderingContext;
|
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
|
||||||
use canvas_traits::webgl::{ActiveAttribInfo, WebGLResult, WebGLVertexArrayId};
|
use canvas_traits::webgl::{ActiveAttribInfo, WebGLResult, WebGLVertexArrayId};
|
||||||
use dom_struct::dom_struct;
|
use dom_struct::dom_struct;
|
||||||
|
|
||||||
|
@ -41,8 +41,8 @@ impl WebGLVertexArrayObjectOES {
|
||||||
self.array_object.is_deleted()
|
self.array_object.is_deleted()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn delete(&self, fallible: bool) {
|
pub fn delete(&self, operation_fallibility: Operation) {
|
||||||
self.array_object.delete(fallible);
|
self.array_object.delete(operation_fallibility);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn ever_bound(&self) -> bool {
|
pub fn ever_bound(&self) -> bool {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue