Make IndexBuffer::as_bytes public (#2338)

This commit is contained in:
Rua 2023-09-27 16:32:07 +02:00 committed by GitHub
parent a8ca0a7f7f
commit 59d7c816fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -995,6 +995,7 @@ pub enum IndexBuffer {
}
impl IndexBuffer {
/// Returns an `IndexType` value corresponding to the type of the buffer.
#[inline]
pub fn index_type(&self) -> IndexType {
match self {
@ -1004,8 +1005,9 @@ impl IndexBuffer {
}
}
/// Returns the buffer reinterpreted as a buffer of bytes.
#[inline]
pub(crate) fn as_bytes(&self) -> &Subbuffer<[u8]> {
pub fn as_bytes(&self) -> &Subbuffer<[u8]> {
match self {
IndexBuffer::U8(buffer) => buffer.as_bytes(),
IndexBuffer::U16(buffer) => buffer.as_bytes(),