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 f99fa97 commit e1fb754Copy full SHA for e1fb754
src/entry_point.rs
@@ -12,13 +12,15 @@ pub trait EntryPoint: 'static + Send + Sync {
12
/// The entry point's base function name, including module path
13
///
14
/// ```
15
+ /// # use bevy_rust_gpu::prelude::EntryPointName;
16
/// const NAME: EntryPointName = "mesh::entry_points::vertex";
17
18
const NAME: &'static str;
19
20
/// Mapping from bevy shader defs to `permutate-macro` parameters.
21
22
23
+ /// # use bevy_rust_gpu::prelude::EntryPointParameters;
24
/// const PARAMETERS: EntryPointParameters = &[
25
/// (&[("VERTEX_TANGENTS", "some")], "none"),
26
/// (&[("VERTEX_COLORS", "some")], "none"),
0 commit comments