mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-16 10:04:42 +03:00
18 lines
303 B
C++
18 lines
303 B
C++
#ifndef GX_C_GX_BATCH_HPP
|
|
#define GX_C_GX_BATCH_HPP
|
|
|
|
#include "gx/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class CGxBatch {
|
|
public:
|
|
// Member variables
|
|
EGxPrim m_primType;
|
|
uint32_t m_start;
|
|
uint32_t m_count;
|
|
uint16_t m_minIndex;
|
|
uint16_t m_maxIndex;
|
|
};
|
|
|
|
#endif
|