Avara3D 0.2.0
C++ 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
14 struct DrawPacket;
15 struct GatherOutput;
16
17 class DrawPacketizer {
18
19 public:
20 // [Internal Static Member Functions]
21
22 static DrawPacket Packetize(GatherOutput& gatherOutput);
23 };
24
25}
26
27#endif // AVARA3D_RENDER_DRAWPACKETIZER_H