2021-06-27 23:10:23 +00:00
|
|
|
use crate::{AmbientLight, ExtractedMeshes, MeshMeta, OmniLight, PbrShaders};
|
2021-06-02 02:59:17 +00:00
|
|
|
use bevy_ecs::{prelude::*, system::SystemState};
|
|
|
|
use bevy_math::{Mat4, Vec3, Vec4};
|
|
|
|
use bevy_render2::{
|
|
|
|
color::Color,
|
|
|
|
core_pipeline::Transparent3dPhase,
|
2021-06-26 22:35:07 +00:00
|
|
|
mesh::Mesh,
|
|
|
|
render_asset::RenderAssets,
|
2021-06-02 02:59:17 +00:00
|
|
|
render_graph::{Node, NodeRunError, RenderGraphContext, SlotInfo, SlotType},
|
|
|
|
render_phase::{Draw, DrawFunctions, RenderPhase, TrackedRenderPass},
|
2021-06-21 23:28:52 +00:00
|
|
|
render_resource::*,
|
|
|
|
renderer::{RenderContext, RenderDevice},
|
2021-06-02 02:59:17 +00:00
|
|
|
texture::*,
|
2021-06-21 23:28:52 +00:00
|
|
|
view::{ExtractedView, ViewUniform, ViewUniformOffset},
|
2021-06-02 02:59:17 +00:00
|
|
|
};
|
|
|
|
use bevy_transform::components::GlobalTransform;
|
|
|
|
use crevice::std140::AsStd140;
|
|
|
|
use std::num::NonZeroU32;
|
|
|
|
|
2021-06-27 23:10:23 +00:00
|
|
|
pub struct ExtractedAmbientLight {
|
|
|
|
color: Color,
|
|
|
|
brightness: f32,
|
|
|
|
}
|
|
|
|
|
2021-06-02 02:59:17 +00:00
|
|
|
pub struct ExtractedPointLight {
|
|
|
|
color: Color,
|
|
|
|
intensity: f32,
|
|
|
|
range: f32,
|
|
|
|
radius: f32,
|
|
|
|
transform: GlobalTransform,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone, AsStd140, Default, Debug)]
|
|
|
|
pub struct GpuLight {
|
|
|
|
color: Vec4,
|
|
|
|
range: f32,
|
|
|
|
radius: f32,
|
|
|
|
position: Vec3,
|
|
|
|
view_proj: Mat4,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Copy, Clone, Debug, AsStd140)]
|
|
|
|
pub struct GpuLights {
|
2021-06-27 23:10:23 +00:00
|
|
|
ambient_color: Vec4,
|
2021-06-02 02:59:17 +00:00
|
|
|
len: u32,
|
2021-06-27 23:10:23 +00:00
|
|
|
lights: [GpuLight; MAX_OMNI_LIGHTS],
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2021-06-27 23:10:23 +00:00
|
|
|
// NOTE: this must be kept in sync MAX_OMNI_LIGHTS in pbr.frag
|
|
|
|
pub const MAX_OMNI_LIGHTS: usize = 10;
|
2021-06-02 02:59:17 +00:00
|
|
|
pub const SHADOW_SIZE: Extent3d = Extent3d {
|
|
|
|
width: 1024,
|
|
|
|
height: 1024,
|
2021-06-27 23:10:23 +00:00
|
|
|
depth_or_array_layers: MAX_OMNI_LIGHTS as u32,
|
2021-06-02 02:59:17 +00:00
|
|
|
};
|
|
|
|
pub const SHADOW_FORMAT: TextureFormat = TextureFormat::Depth32Float;
|
|
|
|
|
|
|
|
pub struct ShadowShaders {
|
2021-06-21 23:28:52 +00:00
|
|
|
pub pipeline: RenderPipeline,
|
|
|
|
pub view_layout: BindGroupLayout,
|
|
|
|
pub light_sampler: Sampler,
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: this pattern for initializing the shaders / pipeline isn't ideal. this should be handled by the asset system
|
|
|
|
impl FromWorld for ShadowShaders {
|
|
|
|
fn from_world(world: &mut World) -> Self {
|
2021-06-21 23:28:52 +00:00
|
|
|
let render_device = world.get_resource::<RenderDevice>().unwrap();
|
|
|
|
let pbr_shaders = world.get_resource::<PbrShaders>().unwrap();
|
|
|
|
|
|
|
|
let view_layout = render_device.create_bind_group_layout(&BindGroupLayoutDescriptor {
|
|
|
|
entries: &[
|
|
|
|
// View
|
|
|
|
BindGroupLayoutEntry {
|
|
|
|
binding: 0,
|
|
|
|
visibility: ShaderStage::VERTEX | ShaderStage::FRAGMENT,
|
|
|
|
ty: BindingType::Buffer {
|
|
|
|
ty: BufferBindingType::Uniform,
|
|
|
|
has_dynamic_offset: true,
|
|
|
|
// TODO: verify this is correct
|
|
|
|
min_binding_size: BufferSize::new(ViewUniform::std140_size_static() as u64),
|
|
|
|
},
|
|
|
|
count: None,
|
2021-06-02 02:59:17 +00:00
|
|
|
},
|
|
|
|
],
|
2021-06-21 23:28:52 +00:00
|
|
|
label: None,
|
|
|
|
});
|
2021-06-02 02:59:17 +00:00
|
|
|
|
2021-06-21 23:28:52 +00:00
|
|
|
let pipeline_layout = render_device.create_pipeline_layout(&PipelineLayoutDescriptor {
|
|
|
|
label: None,
|
|
|
|
push_constant_ranges: &[],
|
2021-06-26 22:35:07 +00:00
|
|
|
bind_group_layouts: &[&view_layout, &pbr_shaders.mesh_layout],
|
2021-06-21 23:28:52 +00:00
|
|
|
});
|
2021-06-02 02:59:17 +00:00
|
|
|
|
2021-06-21 23:28:52 +00:00
|
|
|
let pipeline = render_device.create_render_pipeline(&RenderPipelineDescriptor {
|
|
|
|
label: None,
|
|
|
|
vertex: VertexState {
|
|
|
|
buffers: &[VertexBufferLayout {
|
|
|
|
array_stride: 32,
|
|
|
|
step_mode: InputStepMode::Vertex,
|
|
|
|
attributes: &[
|
|
|
|
// Position (GOTCHA! Vertex_Position isn't first in the buffer due to how Mesh sorts attributes (alphabetically))
|
|
|
|
VertexAttribute {
|
|
|
|
format: VertexFormat::Float32x3,
|
|
|
|
offset: 12,
|
|
|
|
shader_location: 0,
|
|
|
|
},
|
|
|
|
// Normal
|
|
|
|
VertexAttribute {
|
|
|
|
format: VertexFormat::Float32x3,
|
|
|
|
offset: 0,
|
|
|
|
shader_location: 1,
|
|
|
|
},
|
|
|
|
// Uv
|
|
|
|
VertexAttribute {
|
|
|
|
format: VertexFormat::Float32x2,
|
|
|
|
offset: 24,
|
|
|
|
shader_location: 2,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
module: &pbr_shaders.vertex_shader_module,
|
|
|
|
entry_point: "main",
|
|
|
|
},
|
|
|
|
fragment: None,
|
2021-06-02 02:59:17 +00:00
|
|
|
depth_stencil: Some(DepthStencilState {
|
|
|
|
format: SHADOW_FORMAT,
|
|
|
|
depth_write_enabled: true,
|
|
|
|
depth_compare: CompareFunction::LessEqual,
|
|
|
|
stencil: StencilState {
|
|
|
|
front: StencilFaceState::IGNORE,
|
|
|
|
back: StencilFaceState::IGNORE,
|
|
|
|
read_mask: 0,
|
|
|
|
write_mask: 0,
|
|
|
|
},
|
|
|
|
bias: DepthBiasState {
|
|
|
|
constant: 2,
|
|
|
|
slope_scale: 2.0,
|
|
|
|
clamp: 0.0,
|
|
|
|
},
|
|
|
|
}),
|
2021-06-21 23:28:52 +00:00
|
|
|
layout: Some(&pipeline_layout),
|
|
|
|
multisample: MultisampleState::default(),
|
2021-06-02 02:59:17 +00:00
|
|
|
primitive: PrimitiveState {
|
|
|
|
topology: PrimitiveTopology::TriangleList,
|
2021-06-21 23:28:52 +00:00
|
|
|
strip_index_format: None,
|
|
|
|
front_face: FrontFace::Ccw,
|
2021-06-02 02:59:17 +00:00
|
|
|
cull_mode: Some(Face::Back),
|
2021-06-21 23:28:52 +00:00
|
|
|
polygon_mode: PolygonMode::Fill,
|
2021-06-02 02:59:17 +00:00
|
|
|
clamp_depth: false,
|
2021-06-21 23:28:52 +00:00
|
|
|
conservative: false,
|
2021-06-02 02:59:17 +00:00
|
|
|
},
|
2021-06-21 23:28:52 +00:00
|
|
|
});
|
2021-06-02 02:59:17 +00:00
|
|
|
|
|
|
|
ShadowShaders {
|
|
|
|
pipeline,
|
2021-06-21 23:28:52 +00:00
|
|
|
view_layout,
|
|
|
|
light_sampler: render_device.create_sampler(&SamplerDescriptor {
|
2021-06-02 02:59:17 +00:00
|
|
|
address_mode_u: AddressMode::ClampToEdge,
|
|
|
|
address_mode_v: AddressMode::ClampToEdge,
|
|
|
|
address_mode_w: AddressMode::ClampToEdge,
|
|
|
|
mag_filter: FilterMode::Linear,
|
|
|
|
min_filter: FilterMode::Linear,
|
|
|
|
mipmap_filter: FilterMode::Nearest,
|
2021-06-21 23:28:52 +00:00
|
|
|
compare: Some(CompareFunction::LessEqual),
|
2021-06-02 02:59:17 +00:00
|
|
|
..Default::default()
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: ultimately these could be filtered down to lights relevant to actual views
|
|
|
|
pub fn extract_lights(
|
|
|
|
mut commands: Commands,
|
2021-06-27 23:10:23 +00:00
|
|
|
ambient_light: Res<AmbientLight>,
|
|
|
|
lights: Query<(Entity, &OmniLight, &GlobalTransform)>,
|
2021-06-02 02:59:17 +00:00
|
|
|
) {
|
2021-06-27 23:10:23 +00:00
|
|
|
commands.insert_resource(ExtractedAmbientLight {
|
|
|
|
color: ambient_light.color,
|
|
|
|
brightness: ambient_light.brightness,
|
|
|
|
});
|
2021-06-02 02:59:17 +00:00
|
|
|
for (entity, light, transform) in lights.iter() {
|
|
|
|
commands.get_or_spawn(entity).insert(ExtractedPointLight {
|
|
|
|
color: light.color,
|
|
|
|
intensity: light.intensity,
|
|
|
|
range: light.range,
|
|
|
|
radius: light.radius,
|
|
|
|
transform: transform.clone(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ViewLight {
|
2021-06-21 23:28:52 +00:00
|
|
|
pub depth_texture: TextureView,
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ViewLights {
|
2021-06-21 23:28:52 +00:00
|
|
|
pub light_depth_texture: Texture,
|
|
|
|
pub light_depth_texture_view: TextureView,
|
2021-06-02 02:59:17 +00:00
|
|
|
pub lights: Vec<Entity>,
|
|
|
|
pub gpu_light_binding_index: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct LightMeta {
|
|
|
|
pub view_gpu_lights: DynamicUniformVec<GpuLights>,
|
2021-06-21 23:28:52 +00:00
|
|
|
pub shadow_view_bind_group: Option<BindGroup>,
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn prepare_lights(
|
|
|
|
mut commands: Commands,
|
|
|
|
mut texture_cache: ResMut<TextureCache>,
|
2021-06-21 23:28:52 +00:00
|
|
|
render_device: Res<RenderDevice>,
|
2021-06-02 02:59:17 +00:00
|
|
|
mut light_meta: ResMut<LightMeta>,
|
|
|
|
views: Query<Entity, With<RenderPhase<Transparent3dPhase>>>,
|
2021-06-27 23:10:23 +00:00
|
|
|
ambient_light: Res<ExtractedAmbientLight>,
|
2021-06-02 02:59:17 +00:00
|
|
|
lights: Query<&ExtractedPointLight>,
|
|
|
|
) {
|
|
|
|
// PERF: view.iter().count() could be views.iter().len() if we implemented ExactSizeIterator for archetype-only filters
|
|
|
|
light_meta
|
|
|
|
.view_gpu_lights
|
2021-06-21 23:28:52 +00:00
|
|
|
.reserve_and_clear(views.iter().count(), &render_device);
|
2021-06-02 02:59:17 +00:00
|
|
|
|
2021-06-27 23:10:23 +00:00
|
|
|
let ambient_color = ambient_light.color.as_rgba_linear() * ambient_light.brightness;
|
2021-06-02 02:59:17 +00:00
|
|
|
// set up light data for each view
|
|
|
|
for entity in views.iter() {
|
|
|
|
let light_depth_texture = texture_cache.get(
|
2021-06-21 23:28:52 +00:00
|
|
|
&render_device,
|
2021-06-02 02:59:17 +00:00
|
|
|
TextureDescriptor {
|
|
|
|
size: SHADOW_SIZE,
|
|
|
|
mip_level_count: 1,
|
|
|
|
sample_count: 1,
|
|
|
|
dimension: TextureDimension::D2,
|
|
|
|
format: SHADOW_FORMAT,
|
|
|
|
usage: TextureUsage::RENDER_ATTACHMENT | TextureUsage::SAMPLED,
|
2021-06-21 23:28:52 +00:00
|
|
|
label: None,
|
2021-06-02 02:59:17 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
let mut view_lights = Vec::new();
|
|
|
|
|
|
|
|
let mut gpu_lights = GpuLights {
|
2021-06-27 23:10:23 +00:00
|
|
|
ambient_color: ambient_color.into(),
|
2021-06-02 02:59:17 +00:00
|
|
|
len: lights.iter().len() as u32,
|
2021-06-27 23:10:23 +00:00
|
|
|
lights: [GpuLight::default(); MAX_OMNI_LIGHTS],
|
2021-06-02 02:59:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: this should select lights based on relevance to the view instead of the first ones that show up in a query
|
2021-06-27 23:10:23 +00:00
|
|
|
for (i, light) in lights.iter().enumerate().take(MAX_OMNI_LIGHTS) {
|
2021-06-21 23:28:52 +00:00
|
|
|
let depth_texture_view =
|
|
|
|
light_depth_texture
|
|
|
|
.texture
|
|
|
|
.create_view(&TextureViewDescriptor {
|
|
|
|
label: None,
|
|
|
|
format: None,
|
|
|
|
dimension: Some(TextureViewDimension::D2),
|
|
|
|
aspect: TextureAspect::All,
|
|
|
|
base_mip_level: 0,
|
|
|
|
mip_level_count: None,
|
|
|
|
base_array_layer: i as u32,
|
|
|
|
array_layer_count: NonZeroU32::new(1),
|
|
|
|
});
|
2021-06-02 02:59:17 +00:00
|
|
|
|
|
|
|
let view_transform = GlobalTransform::from_translation(light.transform.translation)
|
|
|
|
.looking_at(Vec3::default(), Vec3::Y);
|
|
|
|
// TODO: configure light projection based on light configuration
|
2021-06-27 23:10:23 +00:00
|
|
|
let projection =
|
|
|
|
Mat4::perspective_rh(std::f32::consts::FRAC_PI_2, 1.0, 0.1, light.range);
|
2021-06-02 02:59:17 +00:00
|
|
|
|
|
|
|
gpu_lights.lights[i] = GpuLight {
|
|
|
|
// premultiply color by intensity
|
|
|
|
// we don't use the alpha at all, so no reason to multiply only [0..3]
|
2021-06-27 23:10:23 +00:00
|
|
|
color: (light.color.as_rgba_linear() * light.intensity).into(),
|
2021-06-02 02:59:17 +00:00
|
|
|
radius: light.radius.into(),
|
|
|
|
position: light.transform.translation.into(),
|
|
|
|
range: 1.0 / (light.range * light.range),
|
|
|
|
// this could technically be copied to the gpu from the light's ViewUniforms
|
|
|
|
view_proj: projection * view_transform.compute_matrix().inverse(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let view_light_entity = commands
|
|
|
|
.spawn()
|
|
|
|
.insert_bundle((
|
|
|
|
ViewLight {
|
|
|
|
depth_texture: depth_texture_view,
|
|
|
|
},
|
|
|
|
ExtractedView {
|
|
|
|
width: SHADOW_SIZE.width,
|
|
|
|
height: SHADOW_SIZE.height,
|
|
|
|
transform: view_transform.clone(),
|
|
|
|
projection,
|
|
|
|
},
|
|
|
|
RenderPhase::<ShadowPhase>::default(),
|
|
|
|
))
|
|
|
|
.id();
|
|
|
|
view_lights.push(view_light_entity);
|
|
|
|
}
|
|
|
|
|
|
|
|
commands.entity(entity).insert(ViewLights {
|
|
|
|
light_depth_texture: light_depth_texture.texture,
|
|
|
|
light_depth_texture_view: light_depth_texture.default_view,
|
|
|
|
lights: view_lights,
|
|
|
|
gpu_light_binding_index: light_meta.view_gpu_lights.push(gpu_lights),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
light_meta
|
|
|
|
.view_gpu_lights
|
2021-06-21 23:28:52 +00:00
|
|
|
.write_to_staging_buffer(&render_device);
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct ShadowPhase;
|
|
|
|
|
|
|
|
pub struct ShadowPassNode {
|
|
|
|
main_view_query: QueryState<&'static ViewLights>,
|
|
|
|
view_light_query: QueryState<(&'static ViewLight, &'static RenderPhase<ShadowPhase>)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ShadowPassNode {
|
|
|
|
pub const IN_VIEW: &'static str = "view";
|
|
|
|
|
|
|
|
pub fn new(world: &mut World) -> Self {
|
|
|
|
Self {
|
|
|
|
main_view_query: QueryState::new(world),
|
|
|
|
view_light_query: QueryState::new(world),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Node for ShadowPassNode {
|
|
|
|
fn input(&self) -> Vec<SlotInfo> {
|
|
|
|
vec![SlotInfo::new(ShadowPassNode::IN_VIEW, SlotType::Entity)]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(&mut self, world: &mut World) {
|
|
|
|
self.main_view_query.update_archetypes(world);
|
|
|
|
self.view_light_query.update_archetypes(world);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(
|
|
|
|
&self,
|
|
|
|
graph: &mut RenderGraphContext,
|
2021-06-21 23:28:52 +00:00
|
|
|
render_context: &mut RenderContext,
|
2021-06-02 02:59:17 +00:00
|
|
|
world: &World,
|
|
|
|
) -> Result<(), NodeRunError> {
|
|
|
|
let view_entity = graph.get_input_entity(Self::IN_VIEW)?;
|
2021-06-18 18:21:18 +00:00
|
|
|
if let Some(view_lights) = self.main_view_query.get_manual(world, view_entity).ok() {
|
|
|
|
for view_light_entity in view_lights.lights.iter().copied() {
|
|
|
|
let (view_light, shadow_phase) = self
|
|
|
|
.view_light_query
|
|
|
|
.get_manual(world, view_light_entity)
|
|
|
|
.unwrap();
|
2021-06-21 23:28:52 +00:00
|
|
|
let pass_descriptor = RenderPassDescriptor {
|
|
|
|
label: Some("shadow_pass"),
|
|
|
|
color_attachments: &[],
|
2021-06-18 18:21:18 +00:00
|
|
|
depth_stencil_attachment: Some(RenderPassDepthStencilAttachment {
|
2021-06-21 23:28:52 +00:00
|
|
|
view: &view_light.depth_texture,
|
2021-06-18 18:21:18 +00:00
|
|
|
depth_ops: Some(Operations {
|
|
|
|
load: LoadOp::Clear(1.0),
|
|
|
|
store: true,
|
|
|
|
}),
|
|
|
|
stencil_ops: None,
|
2021-06-02 02:59:17 +00:00
|
|
|
}),
|
2021-06-18 18:21:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let draw_functions = world.get_resource::<DrawFunctions>().unwrap();
|
|
|
|
|
2021-06-21 23:28:52 +00:00
|
|
|
let render_pass = render_context
|
|
|
|
.command_encoder
|
|
|
|
.begin_render_pass(&pass_descriptor);
|
|
|
|
let mut draw_functions = draw_functions.write();
|
|
|
|
let mut tracked_pass = TrackedRenderPass::new(render_pass);
|
|
|
|
for drawable in shadow_phase.drawn_things.iter() {
|
|
|
|
let draw_function = draw_functions.get_mut(drawable.draw_function).unwrap();
|
|
|
|
draw_function.draw(
|
|
|
|
world,
|
|
|
|
&mut tracked_pass,
|
|
|
|
view_light_entity,
|
|
|
|
drawable.draw_key,
|
|
|
|
drawable.sort_key,
|
|
|
|
);
|
|
|
|
}
|
2021-06-18 18:21:18 +00:00
|
|
|
}
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:28:52 +00:00
|
|
|
type DrawShadowMeshParams<'s, 'w> = (
|
|
|
|
Res<'w, ShadowShaders>,
|
|
|
|
Res<'w, ExtractedMeshes>,
|
|
|
|
Res<'w, LightMeta>,
|
|
|
|
Res<'w, MeshMeta>,
|
2021-06-26 22:35:07 +00:00
|
|
|
Res<'w, RenderAssets<Mesh>>,
|
2021-06-21 23:28:52 +00:00
|
|
|
Query<'w, 's, &'w ViewUniformOffset>,
|
2021-06-02 02:59:17 +00:00
|
|
|
);
|
|
|
|
pub struct DrawShadowMesh {
|
2021-06-21 23:28:52 +00:00
|
|
|
params: SystemState<DrawShadowMeshParams<'static, 'static>>,
|
2021-06-02 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DrawShadowMesh {
|
|
|
|
pub fn new(world: &mut World) -> Self {
|
|
|
|
Self {
|
|
|
|
params: SystemState::new(world),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Draw for DrawShadowMesh {
|
2021-06-21 23:28:52 +00:00
|
|
|
fn draw<'w>(
|
2021-06-02 02:59:17 +00:00
|
|
|
&mut self,
|
2021-06-21 23:28:52 +00:00
|
|
|
world: &'w World,
|
|
|
|
pass: &mut TrackedRenderPass<'w>,
|
2021-06-02 02:59:17 +00:00
|
|
|
view: Entity,
|
|
|
|
draw_key: usize,
|
|
|
|
_sort_key: usize,
|
|
|
|
) {
|
2021-06-26 22:35:07 +00:00
|
|
|
let (shadow_shaders, extracted_meshes, light_meta, mesh_meta, meshes, views) =
|
2021-06-21 23:28:52 +00:00
|
|
|
self.params.get(world);
|
|
|
|
let view_uniform_offset = views.get(view).unwrap();
|
|
|
|
let extracted_mesh = &extracted_meshes.into_inner().meshes[draw_key];
|
|
|
|
pass.set_render_pipeline(&shadow_shaders.into_inner().pipeline);
|
2021-06-02 02:59:17 +00:00
|
|
|
pass.set_bind_group(
|
|
|
|
0,
|
2021-06-21 23:28:52 +00:00
|
|
|
light_meta
|
|
|
|
.into_inner()
|
|
|
|
.shadow_view_bind_group
|
|
|
|
.as_ref()
|
|
|
|
.unwrap(),
|
|
|
|
&[view_uniform_offset.offset],
|
2021-06-02 02:59:17 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
pass.set_bind_group(
|
|
|
|
1,
|
2021-06-21 23:28:52 +00:00
|
|
|
mesh_meta
|
|
|
|
.into_inner()
|
|
|
|
.mesh_transform_bind_group
|
|
|
|
.as_ref()
|
|
|
|
.unwrap(),
|
|
|
|
&[extracted_mesh.transform_binding_offset],
|
2021-06-02 02:59:17 +00:00
|
|
|
);
|
2021-06-26 22:35:07 +00:00
|
|
|
|
|
|
|
let gpu_mesh = meshes.into_inner().get(&extracted_mesh.mesh).unwrap();
|
|
|
|
pass.set_vertex_buffer(0, gpu_mesh.vertex_buffer.slice(..));
|
|
|
|
if let Some(index_info) = &gpu_mesh.index_info {
|
2021-06-21 23:28:52 +00:00
|
|
|
pass.set_index_buffer(index_info.buffer.slice(..), 0, IndexFormat::Uint32);
|
2021-06-02 02:59:17 +00:00
|
|
|
pass.draw_indexed(0..index_info.count, 0, 0..1);
|
|
|
|
} else {
|
|
|
|
panic!("non-indexed drawing not supported yet")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|