mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Migrate to the 2024 edition (#35755)
* Migrate to 2024 edition Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Allow unsafe_op_in_unsafe_fn lint This lint warns by default in the 2024 edition, but is *way* too noisy for servo. We might enable it in the future, but not now. Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Compile using the 2024 edition Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> --------- Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
parent
eb2ca42824
commit
bb0d08432e
66 changed files with 317 additions and 293 deletions
|
@ -65,11 +65,11 @@ impl WebGLFramebufferAttachment {
|
|||
}
|
||||
|
||||
fn root(&self) -> WebGLFramebufferAttachmentRoot {
|
||||
match *self {
|
||||
WebGLFramebufferAttachment::Renderbuffer(ref rb) => {
|
||||
match self {
|
||||
WebGLFramebufferAttachment::Renderbuffer(rb) => {
|
||||
WebGLFramebufferAttachmentRoot::Renderbuffer(DomRoot::from_ref(rb))
|
||||
},
|
||||
WebGLFramebufferAttachment::Texture { ref texture, .. } => {
|
||||
WebGLFramebufferAttachment::Texture { texture, .. } => {
|
||||
WebGLFramebufferAttachmentRoot::Texture(DomRoot::from_ref(texture))
|
||||
},
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ impl WebGLFramebufferAttachment {
|
|||
fn detach(&self) {
|
||||
match self {
|
||||
WebGLFramebufferAttachment::Renderbuffer(rb) => rb.detach_from_framebuffer(),
|
||||
WebGLFramebufferAttachment::Texture { ref texture, .. } => {
|
||||
WebGLFramebufferAttachment::Texture { texture, .. } => {
|
||||
texture.detach_from_framebuffer()
|
||||
},
|
||||
}
|
||||
|
@ -271,11 +271,11 @@ impl WebGLFramebuffer {
|
|||
) -> Result<(), u32> {
|
||||
// Get the size of this attachment.
|
||||
let (format, size) = match attachment {
|
||||
Some(WebGLFramebufferAttachment::Renderbuffer(ref att_rb)) => {
|
||||
Some(WebGLFramebufferAttachment::Renderbuffer(att_rb)) => {
|
||||
(Some(att_rb.internal_format()), att_rb.size())
|
||||
},
|
||||
Some(WebGLFramebufferAttachment::Texture {
|
||||
texture: ref att_tex,
|
||||
texture: att_tex,
|
||||
level,
|
||||
}) => match att_tex.image_info_at_face(0, *level as u32) {
|
||||
Some(info) => (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue