mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
webgpu: Update wgpu and revamp RenderPass (#32665)
* Update wgpu and revamp RenderPass * Set good expectations * Set one bad expectation * send_render_command * small fixups * docs * doc * Put RenderPass inside PassState * Use Pass enum for ComputePass too * fix docs
This commit is contained in:
parent
26624a109f
commit
99c1f886b8
15 changed files with 559 additions and 1032 deletions
|
@ -19,6 +19,7 @@ use arrayvec::ArrayVec;
|
|||
use euclid::default::Size2D;
|
||||
pub use gpu_error::{Error, ErrorFilter, PopError};
|
||||
use ipc_channel::ipc::{self, IpcReceiver, IpcSender};
|
||||
pub use render_commands::RenderCommand;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use servo_config::pref;
|
||||
use webrender_api::{DocumentId, ImageData, ImageDescriptor, ImageKey};
|
||||
|
@ -29,6 +30,7 @@ use wgc::id;
|
|||
|
||||
mod dom_messages;
|
||||
mod gpu_error;
|
||||
mod render_commands;
|
||||
mod script_messages;
|
||||
pub use dom_messages::*;
|
||||
pub use identity::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue