use draco_oxide_core::bit_coder::ByteWriter;
use draco_oxide_core::utils::bit_coder::leb128_write;
#[remain::sorted]
#[derive(thiserror::Error, Debug)]
pub enum Err {}
pub fn encode_metadata<W>(_mesh: &draco_oxide_core::mesh::Mesh, writer: &mut W) -> Result<(), Err>
where
W: ByteWriter,
{
write_stub(writer);
Ok(())
}
pub fn encode_point_cloud_metadata<W>(
_attributes: &[draco_oxide_core::attribute::Attribute],
writer: &mut W,
) where
W: ByteWriter,
{
write_stub(writer);
}
fn write_stub<W>(writer: &mut W)
where
W: ByteWriter,
{
leb128_write(0, writer); leb128_write(0, writer); leb128_write(0, writer); }