Fix compilation on platforms with 32-bit usize.
This commit is contained in:
parent
6191d0270e
commit
f0d5a92fbd
|
@ -48,11 +48,8 @@ mod view_uniforms;
|
|||
// See https://alexanderameye.github.io/notes/rendering-outlines/
|
||||
|
||||
/// The direction to extrude the vertex when rendering the outline.
|
||||
pub const ATTRIBUTE_OUTLINE_NORMAL: MeshVertexAttribute = MeshVertexAttribute::new(
|
||||
"Outline_Normal",
|
||||
1585570526414773879,
|
||||
VertexFormat::Float32x3,
|
||||
);
|
||||
pub const ATTRIBUTE_OUTLINE_NORMAL: MeshVertexAttribute =
|
||||
MeshVertexAttribute::new("Outline_Normal", 1585570526, VertexFormat::Float32x3);
|
||||
|
||||
/// Name of the render graph node which draws the outlines.
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue