extract set_scissor from render_pass_end_impl

This commit is contained in:
teoxoy 2024-06-25 16:16:22 +02:00 committed by Teodor Tanasoaia
parent b295a4578c
commit a79ac34b15

View File

@ -1587,28 +1587,9 @@ impl Global {
)
.map_pass_err(scope)?;
}
ArcRenderCommand::SetScissor(ref rect) => {
api_log!("RenderPass::set_scissor_rect {rect:?}");
ArcRenderCommand::SetScissor(rect) => {
let scope = PassErrorScope::SetScissorRect;
if rect.x + rect.w > state.info.extent.width
|| rect.y + rect.h > state.info.extent.height
{
return Err(RenderCommandError::InvalidScissorRect(
*rect,
state.info.extent,
))
.map_pass_err(scope);
}
let r = hal::Rect {
x: rect.x,
y: rect.y,
w: rect.w,
h: rect.h,
};
unsafe {
state.raw_encoder.set_scissor_rect(&r);
}
set_scissor(&mut state, rect).map_pass_err(scope)?;
}
ArcRenderCommand::Draw {
vertex_count,
@ -2586,6 +2567,27 @@ fn set_push_constant<A: HalApi>(
Ok(())
}
fn set_scissor<A: HalApi>(
state: &mut State<A>,
rect: Rect<u32>,
) -> Result<(), RenderPassErrorInner> {
api_log!("RenderPass::set_scissor_rect {rect:?}");
if rect.x + rect.w > state.info.extent.width || rect.y + rect.h > state.info.extent.height {
return Err(RenderCommandError::InvalidScissorRect(rect, state.info.extent).into());
}
let r = hal::Rect {
x: rect.x,
y: rect.y,
w: rect.w,
h: rect.h,
};
unsafe {
state.raw_encoder.set_scissor_rect(&r);
}
Ok(())
}
impl Global {
pub fn render_pass_set_bind_group(
&self,