doc: document UniformStorage::inner_ubo

This commit is contained in:
chyyran 2023-01-16 01:09:38 -05:00
parent 657a688180
commit a2363c30a7

View file

@ -82,6 +82,7 @@ impl<H, C, S> UniformStorage<H, C, S>
where
S: Deref<Target = [u8]> + DerefMut,
{
/// Access the backing storage for the UBO.
pub fn inner_ubo(&self) -> &S {
&self.ubo
}