v0.3.0 API Reference
DrawPacketizer.h
1//
2// DrawPacketizer.h
3// avara3d
4//
5// Created by Morgan Davis on 12/28/25.
6// Copyright © 2026 Morgan K Davis. All rights reserved.
7//
8
9#ifndef AVARA3D_RENDER_DRAWPACKETIZER_H
10#define AVARA3D_RENDER_DRAWPACKETIZER_H
11
12namespace a3d {
13
14struct DrawPacket;
15struct GatherOutput;
16
17class DrawPacketizer {
18
19public:
20 // [Internal Static Member Functions]
21
22 static DrawPacket Packetize(GatherOutput& gatherOutput);
23};
24
25} // namespace a3d
26
27#endif // AVARA3D_RENDER_DRAWPACKETIZER_H