We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44d274 commit f2fe4eaCopy full SHA for f2fe4ea
1 file changed
tools/triangles_demo/src/main.rs
@@ -1,5 +1,3 @@
1
-use std::rc::Rc;
2
-
3
use lambda::{
4
core::{
5
component::{
@@ -15,12 +13,8 @@ use lambda::{
15
13
pipeline::{
16
14
self,
17
PipelineStage,
18
- RenderPipeline,
19
- },
20
- render_pass::{
21
- self,
22
- RenderPass,
23
},
+ render_pass,
24
shader::{
25
Shader,
26
ShaderBuilder,
@@ -98,7 +92,6 @@ pub fn push_constants_to_bytes(push_constants: &PushConstant) -> &[u32] {
98
92
std::slice::from_raw_parts(ptr, size_in_u32)
99
93
};
100
94
101
- println!("Push constants: {:?}", bytes);
102
95
return bytes;
103
96
}
104
97
0 commit comments