Struct librashader_reflect::reflect::semantics::UboReflection
source · pub struct UboReflection {
pub binding: u32,
pub size: u32,
pub stage_mask: BindingStage,
}Expand description
Reflection information for the Uniform Buffer
Fields§
§binding: u32The binding point for this UBO.
size: u32The size of the UBO buffer. UBO sizes returned by reflection is always aligned to a 16 byte boundary.
stage_mask: BindingStageThe mask indicating for which stages the UBO should be bound.