mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 20:32:28 +00:00
14 lines
226 B
C
14 lines
226 B
C
|
|
#ifndef GX_GLL_GL_VERTEX_FORMAT_H
|
||
|
|
#define GX_GLL_GL_VERTEX_FORMAT_H
|
||
|
|
|
||
|
|
#include "gx/gll/GLTypes.h"
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class GLVertexFormat {
|
||
|
|
public:
|
||
|
|
uint32_t m_Size;
|
||
|
|
GLVertexAttrib m_Attribs[16];
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|