rend3-pbr 0.1.1

PBR Render Routine for Rend3
Documentation
use rend3::{resources::TextureManager, types::TextureHandle, util::bind_merge::BindGroupBuilder};
use wgpu::{BindGroup, Device, RenderPass, RenderPipeline};

use crate::common::{interfaces::ShaderInterfaces, samplers::Samplers};

pub struct UpdateSkyboxArgs<'a> {
    pub device: &'a Device,
    pub d2c_texture_manager: &'a TextureManager,

    pub interfaces: &'a ShaderInterfaces,

    pub new_skybox_handle: Option<TextureHandle>,
}

pub struct SkyboxPassDrawArgs<'rpass, 'b> {
    pub rpass: &'b mut RenderPass<'rpass>,

    pub samplers: &'rpass Samplers,
    pub shader_uniform_bg: &'rpass BindGroup,
}

pub struct StoredSkybox {
    pub bg: BindGroup,
    pub handle: TextureHandle,
}

pub struct SkyboxPass {
    pub skybox_pipeline: RenderPipeline,
    pub current_skybox: Option<StoredSkybox>,
}

impl SkyboxPass {
    pub fn new(skybox_pipeline: RenderPipeline) -> Self {
        Self {
            skybox_pipeline,
            current_skybox: None,
        }
    }

    pub fn update_skybox(&mut self, args: UpdateSkyboxArgs<'_>) {
        profiling::scope!("Update Skybox");

        if let Some(handle) = args.new_skybox_handle {
            if self.current_skybox.as_ref().map(|s| &s.handle) == Some(&handle) {
                return;
            }

            let bg = BindGroupBuilder::new(Some("skybox"))
                .with_texture_view(args.d2c_texture_manager.get_view(handle.get_raw()))
                .build(args.device, &args.interfaces.skybox_bgl);

            self.current_skybox = Some(StoredSkybox { bg, handle })
        }
    }

    pub fn draw_skybox<'rpass>(&'rpass self, args: SkyboxPassDrawArgs<'rpass, '_>) {
        if let Some(ref skybox) = self.current_skybox {
            args.rpass.set_pipeline(&self.skybox_pipeline);
            args.rpass.set_bind_group(0, &args.samplers.linear_nearest_bg, &[]);
            args.rpass.set_bind_group(1, &skybox.bg, &[]);
            args.rpass.set_bind_group(2, args.shader_uniform_bg, &[]);
            args.rpass.draw(0..3, 0..1);
        }
    }
}