mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
remove empty buffer warning because its too noisey
This commit is contained in:
parent
ad654a3c25
commit
0c3e83452d
1 changed files with 4 additions and 4 deletions
|
@ -63,10 +63,10 @@ impl WgpuResources {
|
|||
None => {
|
||||
match binding.bind_type {
|
||||
BindType::Uniform { .. } => {
|
||||
println!(
|
||||
"Warning: creating new empty buffer for uniform binding {} {:?}",
|
||||
binding.name, binding
|
||||
);
|
||||
// println!(
|
||||
// "Warning: creating new empty buffer for uniform binding {} {:?}",
|
||||
// binding.name, binding
|
||||
// );
|
||||
unset_uniforms.push(binding.name.to_string());
|
||||
let size = binding.bind_type.get_uniform_size().unwrap();
|
||||
let resource = self.create_buffer(
|
||||
|
|
Loading…
Reference in a new issue