30 lines
529 B
C
30 lines
529 B
C
#ifndef DUST3D_SHADER_VERTEX_H
|
|
#define DUST3D_SHADER_VERTEX_H
|
|
#include <QOpenGLFunctions>
|
|
|
|
#pragma pack(push)
|
|
#pragma pack(1)
|
|
typedef struct
|
|
{
|
|
GLfloat posX;
|
|
GLfloat posY;
|
|
GLfloat posZ;
|
|
GLfloat normX;
|
|
GLfloat normY;
|
|
GLfloat normZ;
|
|
GLfloat colorR;
|
|
GLfloat colorG;
|
|
GLfloat colorB;
|
|
GLfloat texU;
|
|
GLfloat texV;
|
|
GLfloat metalness;
|
|
GLfloat roughness;
|
|
GLfloat tangentX;
|
|
GLfloat tangentY;
|
|
GLfloat tangentZ;
|
|
GLfloat alpha = 1.0;
|
|
} ShaderVertex;
|
|
#pragma pack(pop)
|
|
|
|
#endif
|