binana/3.3.5a/include/gx/batch.h

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