mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
17 lines
No EOL
255 B
C
17 lines
No EOL
255 B
C
#ifndef GX_BATCH_H
|
|
#define GX_BATCH_H
|
|
|
|
#include "gx/types.h"
|
|
|
|
typedef struct CGxBatch CGxBatch;
|
|
|
|
struct CGxBatch {
|
|
// Member variables
|
|
EGxPrim m_primType;
|
|
uint32_t m_start;
|
|
uint32_t m_count;
|
|
uint16_t m_minIndex;
|
|
uint16_t m_maxIndex;
|
|
};
|
|
|
|
#endif |