Function SDL_SetGPUBlendConstants

pub unsafe extern "C" fn SDL_SetGPUBlendConstants(
    render_pass: *mut SDL_GPURenderPass,
    blend_constants: SDL_FColor,
)
Available on crate feature dep_sdl3 only.
Expand description

Sets the current blend constants on a command buffer.

§Parameters

  • render_pass: a render pass handle.
  • blend_constants: the blend constant color.

§Availability

This function is available since SDL 3.2.0.

§See also