mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-22 14:55:05 +00:00
feedback
This commit is contained in:
parent
abe41ccf9c
commit
fc1cb5eb20
@ -267,15 +267,14 @@ impl crate::Surface<super::Api> for super::Surface {
|
||||
_timeout_ms: u32, //TODO
|
||||
) -> Result<Option<crate::AcquiredSurfaceTexture<super::Api>>, crate::SurfaceError> {
|
||||
let render_layer = self.render_layer.lock();
|
||||
let (drawable, texture) = autoreleasepool(|| {
|
||||
if let Some(drawable) = render_layer.next_drawable() {
|
||||
Ok((drawable.to_owned(), drawable.texture().to_owned()))
|
||||
} else {
|
||||
Err(crate::SurfaceError::Other(
|
||||
"failed to allocate drawable due to metal resource exhaustion",
|
||||
))
|
||||
}
|
||||
})?;
|
||||
let (drawable, texture) = match autoreleasepool(|| {
|
||||
render_layer
|
||||
.next_drawable()
|
||||
.map(|drawable| (drawable.to_owned(), drawable.texture().to_owned()))
|
||||
}) {
|
||||
Some(pair) => pair,
|
||||
None => return Ok(None),
|
||||
};
|
||||
|
||||
let suf_texture = super::SurfaceTexture {
|
||||
texture: super::Texture {
|
||||
|
Loading…
Reference in New Issue
Block a user