We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63657b3 commit 3e0fb2cCopy full SHA for 3e0fb2c
wgpu-core/src/lib.rs
@@ -66,7 +66,11 @@ pub mod registry;
66
pub mod resource;
67
pub mod storage;
68
mod track;
69
-mod validation;
+// This is public for users who pre-compile shaders while still wanting to
70
+// preserve all run-time checks that `wgpu-core` does.
71
+// See <https://github.com/gfx-rs/wgpu/issues/3103>, after which this can be
72
+// made private again.
73
+pub mod validation;
74
75
pub use hal::{api, MAX_BIND_GROUPS, MAX_COLOR_ATTACHMENTS, MAX_VERTEX_BUFFERS};
76
0 commit comments