mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-28 06:46:03 +03: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
|